mirror of
https://github.com/zedeus/nitter.git
synced 2024-11-15 13:13:46 +00:00
10bcf99205
Fixes #6
42 lines
687 B
SCSS
42 lines
687 B
SCSS
@import '_variables';
|
|
|
|
.poll-meter {
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin: 6px 0;
|
|
height: 26px;
|
|
background: $bg_color;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.poll-choice-bar {
|
|
height: 100%;
|
|
position: absolute;
|
|
background: $dark_grey;
|
|
}
|
|
|
|
.poll-choice-value {
|
|
position: relative;
|
|
font-weight: bold;
|
|
margin-left: 5px;
|
|
margin-right: 6px;
|
|
min-width: 30px;
|
|
text-align: right;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.poll-choice-option {
|
|
position: relative;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.poll-info {
|
|
color: $grey;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.leader .poll-choice-bar {
|
|
background: $accent_dark;
|
|
}
|