bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/modal/base/styles.scss

39 lines
608 B
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
@import "/imports/ui/stylesheets/mixins/_scrollable";
2016-09-01 03:52:17 +08:00
.modal {
@include scrollbox-vertical();
max-width: 60vw;
max-height: 100%;
border-radius: var(--border-radius);
2016-09-01 03:52:17 +08:00
background: #fff;
overflow: auto;
outline: none;
@include mq($small-only) {
max-width: 95vw;
}
@include mq($medium-up) {
max-width: 80vw;
}
}
.overlay {
2016-09-01 03:52:17 +08:00
z-index: 1000;
background: #fff;
2016-09-01 03:52:17 +08:00
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.portal {
overflow: hidden;
}