mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
28 lines
460 B
SCSS
28 lines
460 B
SCSS
// component styles are encapsulated and only applied to their components
|
|
#jitsiContainer {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: none;
|
|
}
|
|
|
|
.join-conference-wrapper {
|
|
display: table;
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.join-conference-boat {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.join-conference-prompt {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 90%;
|
|
text-align: center;
|
|
} |