2022-10-22 11:45:54 +03:00
|
|
|
@import '../../../styles/mixins.scss';
|
|
|
|
|
2022-05-04 00:55:13 +03:00
|
|
|
.root {
|
2022-05-12 09:31:31 +03:00
|
|
|
display: grid;
|
2022-05-17 09:41:39 +03:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-10-13 21:13:37 +03:00
|
|
|
width: 100%;
|
2022-08-30 09:17:12 +03:00
|
|
|
background-color: var(--theme-color-background-main);
|
2022-11-13 23:37:31 +03:00
|
|
|
|
2022-10-22 11:45:54 +03:00
|
|
|
@include screen(desktop) {
|
|
|
|
height: var(--content-height);
|
|
|
|
}
|
|
|
|
|
2022-10-13 21:13:37 +03:00
|
|
|
.mainSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-12-29 21:14:12 +03:00
|
|
|
|
|
|
|
@include screen(desktop) {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2022-10-13 21:13:37 +03:00
|
|
|
}
|
2022-08-30 09:17:12 +03:00
|
|
|
|
2022-11-13 23:37:31 +03:00
|
|
|
.mainSection::-webkit-scrollbar {
|
2023-01-19 01:45:59 +03:00
|
|
|
display: none;
|
2022-11-13 23:37:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.mainSection::-webkit-scrollbar-thumb {
|
2023-01-19 01:45:59 +03:00
|
|
|
display: none;
|
2022-11-13 23:37:31 +03:00
|
|
|
}
|
|
|
|
|
2022-08-30 09:17:12 +03:00
|
|
|
.topSection {
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--theme-color-components-video-background);
|
|
|
|
}
|
|
|
|
.lowerSection {
|
2022-09-10 22:08:22 +03:00
|
|
|
padding: 0em 2%;
|
2022-09-02 08:00:00 +03:00
|
|
|
margin-bottom: 2em;
|
2022-08-30 09:17:12 +03:00
|
|
|
}
|
2022-09-10 22:08:22 +03:00
|
|
|
|
|
|
|
.lowerSectionMobile {
|
2022-12-29 21:14:12 +03:00
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
2023-01-16 05:37:21 +03:00
|
|
|
flex-shrink: 0;
|
2022-09-10 22:08:22 +03:00
|
|
|
padding: 0.3em;
|
|
|
|
}
|
2022-05-04 10:55:44 +03:00
|
|
|
}
|
|
|
|
|
2022-05-04 00:55:13 +03:00
|
|
|
.leftCol {
|
2022-07-03 13:36:30 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-05-04 00:55:13 +03:00
|
|
|
}
|
2022-05-18 02:07:56 +03:00
|
|
|
|
2022-05-26 06:38:40 +03:00
|
|
|
.loadingSpinner {
|
2022-10-17 09:07:21 +03:00
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
display: grid;
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
grid-template-rows: 1fr auto;
|
2022-05-26 06:38:40 +03:00
|
|
|
}
|
2023-01-16 05:37:21 +03:00
|
|
|
|
|
|
|
.replacementBar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2023-01-16 10:13:38 +03:00
|
|
|
align-items: flex-start;
|
2023-01-16 05:37:21 +03:00
|
|
|
|
|
|
|
@include screen(tablet) {
|
|
|
|
height: var(--replacement-bar-height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.defaultTabBar {
|
|
|
|
width: 85%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.defaultTabBar,
|
|
|
|
.actionButtonMenu {
|
|
|
|
@include screen(tablet) {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include screen(tablet) {
|
|
|
|
position: relative;
|
|
|
|
> :global(.ant-tabs-content-holder) {
|
|
|
|
position: absolute;
|
|
|
|
height: calc(100% - var(--replacement-bar-height));
|
|
|
|
top: var(--replacement-bar-height);
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> :global(.ant-tabs-content-holder .ant-tabs-content) {
|
|
|
|
padding-top: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|