bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/closed-captions/styles.scss
Oswaldo Acauan f71d32a464 Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
WIP

wip

wip

format

wip

Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
2018-10-23 14:21:58 -02:00

30 lines
584 B
SCSS

.ccbox {
resize: none;
background-color: white;
border: 0;
padding: none;
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
position: absolute;
}
.frame {
width: calc(100% - 40px);
height: calc(100% - 80px);
margin: 20px;
overflow: auto;
//if you change the thickness of the border
//you should also change a corresponding value in the componentWillUpdate
//otherwise auto-scrolling for closed-captions will break
border: 2px solid #bbbfcd;
}
.title {
height: 20px;
margin-top: 0px;
margin-bottom: 0px;
padding-left: 20px;
}