2022-05-03 23:55:13 +02:00
|
|
|
.root {
|
2022-05-12 08:31:31 +02:00
|
|
|
display: grid;
|
2022-05-17 08:41:39 +02:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-08-30 08:17:12 +02:00
|
|
|
|
|
|
|
background-color: var(--theme-color-background-main);
|
|
|
|
|
|
|
|
.topSection {
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--theme-color-components-video-background);
|
|
|
|
}
|
|
|
|
.lowerSection {
|
|
|
|
padding: 0em 2em;
|
|
|
|
}
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
|
2022-05-03 23:55:13 +02:00
|
|
|
.leftCol {
|
2022-07-03 12:36:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
2022-05-18 01:07:56 +02:00
|
|
|
|
2022-05-26 05:38:40 +02:00
|
|
|
.loadingSpinner {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|
2022-07-08 22:20:22 +02:00
|
|
|
.mobile {
|
|
|
|
&.root {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: calc(100vh - 64px);
|
|
|
|
overflow: hidden;
|
2022-08-30 08:17:12 +02:00
|
|
|
.topSection {
|
2022-07-08 22:20:22 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 30vh 5vh 5vh;
|
|
|
|
height: 40vh;
|
|
|
|
}
|
2022-08-30 08:17:12 +02:00
|
|
|
.lowerSection {
|
2022-07-08 22:20:22 +02:00
|
|
|
height: 60vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mobileChat {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|