2017-12-10 02:59:36 -05:00
|
|
|
// component styles are encapsulated and only applied to their components
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "../../../style/themes/themes";
|
2017-12-10 02:59:36 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
@include themifyComponent() {
|
|
|
|
#jitsiContainer {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
display: none;
|
|
|
|
}
|
2017-12-10 02:59:36 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
.join-conference-wrapper {
|
|
|
|
display: table;
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-07-23 16:59:48 -04:00
|
|
|
background-color: themed(widgetWelcomeBgColor);
|
2018-10-22 02:41:35 -04:00
|
|
|
}
|
2017-12-10 02:59:36 -05:00
|
|
|
|
2018-10-22 02:41:35 -04:00
|
|
|
.join-conference-boat {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.join-conference-prompt {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 90%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-07-23 16:59:48 -04:00
|
|
|
}
|