Files
jitsi-meet/css/overlay/_overlay.scss
Ilya Daynatovich 5e7e5b317b Fix texts
2016-10-31 19:02:32 +02:00

31 lines
568 B
SCSS

.overlay {
&__container {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: $overlayZ;
background: $defaultBackground;
}
&__content {
position: absolute;
margin: 0 auto;
height: 100%;
width: 56%;
left: 50%;
@include transform(translateX(-50%));
&_bottom {
position: absolute;
bottom: 0;
}
}
&__policy {
position: absolute;
bottom: 24px;
width: 100%;
}
}