2023-06-21 06:56:37 +03:00
|
|
|
@import '../../../styles/mixins';
|
2022-10-22 11:45:54 +03:00
|
|
|
|
2023-07-10 00:07:35 +03:00
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainColumn {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2023-07-28 05:20:04 +03:00
|
|
|
.mainColumn::-webkit-scrollbar,
|
|
|
|
.mainColumn::-webkit-scrollbar-thumb {
|
2023-07-10 00:07:35 +03:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-04-27 01:39:53 +03:00
|
|
|
.lowerSection {
|
|
|
|
padding: var(--content-padding);
|
|
|
|
}
|
2022-09-10 22:08:22 +03:00
|
|
|
|
2023-05-18 22:13:26 +03:00
|
|
|
.lowerSectionMobileTabbed {
|
2023-04-27 01:39:53 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 0;
|
2023-05-18 22:13:26 +03:00
|
|
|
position: relative;
|
2023-04-27 01:39:53 +03:00
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2023-04-27 01:31:23 +03:00
|
|
|
|
2023-05-23 04:56:44 +03:00
|
|
|
@include screen(tablet) {
|
|
|
|
top: 0;
|
2023-05-12 17:00:04 +03:00
|
|
|
position: relative;
|
2023-04-27 01:31:23 +03:00
|
|
|
}
|
2023-04-27 07:23:30 +03:00
|
|
|
|
|
|
|
:global(.ant-tabs-nav) {
|
2023-06-21 06:56:37 +03:00
|
|
|
margin-bottom: 0;
|
2023-05-05 07:48:04 +03:00
|
|
|
padding-top: 0.5vh;
|
|
|
|
padding-left: 1vw;
|
2023-04-27 07:23:30 +03:00
|
|
|
}
|
2023-04-27 01:39:53 +03:00
|
|
|
}
|
2023-04-27 01:31:23 +03:00
|
|
|
|
2023-02-09 05:50:58 +03:00
|
|
|
.topSectionElement {
|
|
|
|
background-color: var(--theme-color-components-video-background);
|
2023-06-21 06:56:37 +03:00
|
|
|
|
2023-04-27 01:31:23 +03:00
|
|
|
@include screen(tablet) {
|
|
|
|
// "sticks" the stream to the top of the page
|
|
|
|
position: sticky;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
2023-02-09 05:50:58 +03:00
|
|
|
}
|
|
|
|
|
2023-04-26 19:40:17 +03:00
|
|
|
.offlineBanner {
|
2023-06-05 18:55:21 +03:00
|
|
|
color: var(--theme-color-palette-4);
|
2023-04-26 19:40:17 +03:00
|
|
|
}
|
|
|
|
|
2023-05-23 04:56:44 +03:00
|
|
|
.mobileActionButtons {
|
2023-04-28 22:09:00 +03:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
@include screen(tablet) {
|
2023-05-23 04:56:44 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-04-28 22:09:00 +03:00
|
|
|
position: absolute;
|
2023-07-28 05:20:04 +03:00
|
|
|
margin: 5px;
|
|
|
|
right: 5px;
|
2023-05-22 00:11:53 +03:00
|
|
|
z-index: 199;
|
2023-04-28 22:09:00 +03:00
|
|
|
}
|
2023-05-23 04:56:44 +03:00
|
|
|
|
|
|
|
> * {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2023-04-28 22:09:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.desktopActionButtons {
|
|
|
|
display: block;
|
2023-07-10 00:07:35 +03:00
|
|
|
width: 100%;
|
2023-04-28 22:09:00 +03:00
|
|
|
|
|
|
|
@include screen(tablet) {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-02-09 05:50:58 +03:00
|
|
|
}
|
|
|
|
|
2023-06-28 17:52:35 +03:00
|
|
|
// not sure if this is needed
|
2023-04-27 01:31:23 +03:00
|
|
|
.statusBar {
|
|
|
|
flex-shrink: 0;
|
2022-05-04 00:55:13 +03:00
|
|
|
}
|
2022-05-18 02:07:56 +03:00
|
|
|
|
2023-04-27 01:31:23 +03:00
|
|
|
// not sure if this is needed
|
2022-05-26 06:38:40 +03:00
|
|
|
.loadingSpinner {
|
2022-10-17 09:07:21 +03:00
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
2023-01-16 05:37:21 +03:00
|
|
|
.defaultTabBar {
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
|
2023-02-22 03:15:09 +03:00
|
|
|
.bottomPageContentContainer {
|
|
|
|
background-color: var(--theme-color-components-content-background);
|
|
|
|
padding: calc(2 * var(--content-padding));
|
|
|
|
border-radius: var(--theme-rounded-corners);
|
|
|
|
width: 100%;
|
2023-05-05 04:08:57 +03:00
|
|
|
margin-bottom: 20px;
|
2023-04-16 03:50:52 +03:00
|
|
|
|
2023-05-05 07:40:53 +03:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
line-height: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-04-16 03:50:52 +03:00
|
|
|
h1:first-child,
|
|
|
|
h2:first-child,
|
|
|
|
h3:first-child {
|
|
|
|
margin-top: unset;
|
|
|
|
}
|
2023-02-22 03:15:09 +03:00
|
|
|
}
|
2023-06-21 06:56:37 +03:00
|
|
|
|
2023-05-23 04:56:44 +03:00
|
|
|
.floatingMobileChatModalButton {
|
|
|
|
position: fixed;
|
|
|
|
width: 100px;
|
|
|
|
height: 40px;
|
|
|
|
bottom: 40px;
|
2023-05-24 02:32:35 +03:00
|
|
|
right: var(--content-padding);
|
2023-05-23 04:56:44 +03:00
|
|
|
font-weight: 600;
|
2023-05-25 18:20:03 +03:00
|
|
|
font-size: 1em;
|
|
|
|
z-index: 99;
|
|
|
|
background-color: var(--theme-color-components-chat-background);
|
|
|
|
border-width: 0;
|
2023-06-21 06:56:37 +03:00
|
|
|
box-shadow: 0 1px 3px 1px rgb(0 0 0 / 20%);
|
2023-05-23 04:56:44 +03:00
|
|
|
}
|
2023-06-28 17:52:35 +03:00
|
|
|
|
|
|
|
.centerSpinner {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
}
|