bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/styles.scss
2018-04-17 15:04:16 -03:00

55 lines
809 B
SCSS

@import "../../stylesheets/variables/_all";
.pollingContainer {
order: 2;
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
padding-bottom: 5px;
@include mq($medium-up) {
padding-bottom: 10px;
}
}
.pollingTitle {
color: $color-white;
white-space: nowrap;
padding-bottom: 10px;
}
.pollingAnswers {
display: grid;
grid-auto-flow: column;
grid-auto-columns: auto;
justify-content: center;
align-items: center;
width: 100%;
}
.pollButtonWrapper {
text-align: center;
margin-left: 5px;
overflow: hidden;
@include mq($medium-up) {
margin-left: 10px;
}
&:first-of-type {
margin-left: 0;
}
}
.pollingButton {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.hidden {
display: none;
}