2024-07-22 17:41:30 +03:00
|
|
|
@use "styles/ScreenSizes.module.scss";
|
|
|
|
@use "styles/ZIndexes.module.scss";
|
|
|
|
|
|
|
|
.app_container {
|
|
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
|
|
|
align-items: stretch;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
@media (max-width: ScreenSizes.$small) {
|
|
|
|
.menu_container {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: ZIndexes.$overlay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-14 20:31:30 +03:00
|
|
|
&.blur {
|
|
|
|
filter: opacity(0.1);
|
|
|
|
transition: filter 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2024-07-22 17:41:30 +03:00
|
|
|
.content_container {
|
2024-09-02 15:01:34 +03:00
|
|
|
overflow: auto;
|
2024-07-22 17:41:30 +03:00
|
|
|
flex: 1 1 0%;
|
|
|
|
|
|
|
|
@media (max-width: ScreenSizes.$small) {
|
|
|
|
&.blured {
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|