mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 21:33:38 +08:00
a342d2f150
* reduces white-space in polls and uses font-size variables
30 lines
435 B
SCSS
30 lines
435 B
SCSS
div.poll {
|
|
.poll-buttons {
|
|
padding: 0.5em 1em 1em 1em;
|
|
|
|
button {
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
.poll-info {
|
|
padding: 0 1em;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
border-top: 1px solid $primary-low;
|
|
.info-text {
|
|
display: inline;
|
|
}
|
|
.info-number {
|
|
font-size: $font-up-6;
|
|
}
|
|
p {
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
.info-label {
|
|
margin-left: 0.25em;
|
|
}
|
|
}
|
|
}
|