2022-10-22 10:45:54 +02:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
2022-05-03 23:55:13 +02:00
|
|
|
.root {
|
2022-05-11 23:31:31 -07:00
|
|
|
display: grid;
|
2022-05-17 08:41:39 +02:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-10-13 20:13:37 +02:00
|
|
|
width: 100%;
|
2022-08-29 23:17:12 -07:00
|
|
|
background-color: var(--theme-color-background-main);
|
2022-11-13 12:37:31 -08:00
|
|
|
|
2022-10-22 10:45:54 +02:00
|
|
|
@include screen(desktop) {
|
|
|
|
height: var(--content-height);
|
|
|
|
}
|
|
|
|
|
2022-10-13 20:13:37 +02:00
|
|
|
.mainSection {
|
|
|
|
display: flex;
|
2022-10-13 21:23:44 +02:00
|
|
|
overflow-y: scroll;
|
2022-10-13 20:13:37 +02:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-08-29 23:17:12 -07:00
|
|
|
|
2022-11-13 12:37:31 -08:00
|
|
|
.mainSection::-webkit-scrollbar {
|
|
|
|
width: 5px;
|
|
|
|
height: auto;
|
|
|
|
background-color: var(--theme-color-components-scrollbar-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainSection::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--theme-color-components-scrollbar-thumb);
|
2022-12-05 21:52:24 -08:00
|
|
|
border-radius: 1px;
|
2022-11-13 12:37:31 -08:00
|
|
|
}
|
|
|
|
|
2022-08-29 23:17:12 -07:00
|
|
|
.topSection {
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--theme-color-components-video-background);
|
|
|
|
}
|
|
|
|
.lowerSection {
|
2022-09-10 12:08:22 -07:00
|
|
|
padding: 0em 2%;
|
2022-09-01 22:00:00 -07:00
|
|
|
margin-bottom: 2em;
|
2022-08-29 23:17:12 -07:00
|
|
|
}
|
2022-09-10 12:08:22 -07:00
|
|
|
|
|
|
|
.lowerSectionMobile {
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
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-17 16:07:56 -07:00
|
|
|
|
2022-05-25 20:38:40 -07:00
|
|
|
.loadingSpinner {
|
2022-10-17 11:37:21 +05:30
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
display: grid;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
grid-template-rows: 1fr auto;
|
2022-05-25 20:38:40 -07:00
|
|
|
}
|