mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-14 13:10:29 +00:00
46 lines
No EOL
943 B
Text
46 lines
No EOL
943 B
Text
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
@import (reference) '~stremio/common/screen-sizes.less';
|
|
|
|
.main-nav-bars-container {
|
|
position: relative;
|
|
z-index: 0;
|
|
|
|
.horizontal-nav-bar {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.vertical-nav-bar {
|
|
position: absolute;
|
|
top: var(--horizontal-nav-bar-size);
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.nav-content-container {
|
|
position: absolute;
|
|
top: var(--horizontal-nav-bar-size);
|
|
right: 0;
|
|
bottom: 0;
|
|
left: var(--vertical-nav-bar-size);
|
|
z-index: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: @minimum) {
|
|
.main-nav-bars-container {
|
|
.nav-content-container {
|
|
left: 0;
|
|
bottom: var(--vertical-nav-bar-size);
|
|
}
|
|
|
|
.vertical-nav-bar {
|
|
top: initial;
|
|
}
|
|
}
|
|
} |