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