bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/styles.scss

42 lines
549 B
SCSS
Raw Normal View History

2016-05-21 00:35:15 +08:00
@import "imports/ui/stylesheets/variables/_all";
.enter {
opacity: 0.01;
}
.enterActive {
opacity: 1;
transition: opacity 400ms ease-in;
}
.appear {
opacity: 0.01;
}
.appearActive {
opacity: 1;
transition: opacity 400ms ease-in;
}
2016-06-02 05:57:19 +08:00
.whiteboardPaper {
2016-06-03 06:09:28 +08:00
position: absolute;
display: block;
width: 100%;
height: 100%;
}
.svgStyles {
object-fit: contain;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
2016-06-02 05:57:19 +08:00
}
2016-06-30 06:00:06 +08:00
.whiteboardContainer {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}