bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/closed-captions/styles.scss
Oleksandr Zhurbenko 251bd22738 PR review fixes
2017-09-06 12:36:52 -07:00

30 lines
582 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;
}