matrix-dimension/web/app/widget-wrappers/jitsi/jitsi.component.scss
Andrew Morgan 401812931a Add BigBlueButton widget to integration manager
This adds the widget and the configuration for it to the integration
manager, so that the user can add a BBB widget. The code that will
actually run inside of the widget is not yet here.

A few CSS things are updated as well to make them more generic, as
we reused a few things that were previously jitsi only.
2020-07-23 23:14:31 +02:00

34 lines
634 B
SCSS

// component styles are encapsulated and only applied to their components
@import "../../../style/themes/themes";
@include themifyComponent() {
#jitsiContainer {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
}
.join-conference-wrapper {
display: table;
position: absolute;
height: 100%;
width: 100%;
background-color: themed(widgetWelcomeBgColor);
}
.join-conference-boat {
display: table-cell;
vertical-align: middle;
}
.join-conference-prompt {
margin-left: auto;
margin-right: auto;
width: 90%;
text-align: center;
}
}