bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/styles.scss
2018-04-13 15:56:21 -03:00

51 lines
745 B
SCSS

@import "../../stylesheets/variables/_all";
.pollingContainer {
order: 2;
width: 100%;
display: flex;
padding: .8rem;
align-items: center;
flex-direction: column;
}
.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;
}