85 lines
1.1 KiB
SCSS
85 lines
1.1 KiB
SCSS
.container {
|
|
display: flex;
|
|
}
|
|
|
|
app-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 232px;
|
|
right: 0;
|
|
height: 96px;
|
|
background-color: var(--white);
|
|
z-index: 1;
|
|
}
|
|
|
|
app-sidebar {
|
|
width: 232px;
|
|
height: 100vh;
|
|
}
|
|
|
|
app-sidebar-mobile {
|
|
display: none;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 80px;
|
|
}
|
|
|
|
.main-content {
|
|
position: fixed;
|
|
top: 96px;
|
|
left: 232px;
|
|
bottom: 0;
|
|
right: 0;
|
|
padding: 64px;
|
|
background-color: var(--bgContent);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.blur-background {
|
|
filter: blur(5px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.d-none {
|
|
display: none;
|
|
}
|
|
|
|
/* Media queries */
|
|
|
|
@media (max-width: 1440px) {
|
|
app-header,
|
|
app-sidebar,
|
|
.main-content {
|
|
left: 60px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.main-content {
|
|
padding: 32px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.main-content {
|
|
top: 80px;
|
|
left: 0;
|
|
bottom: 80px;
|
|
}
|
|
|
|
app-header {
|
|
height: 80px;
|
|
left: 0;
|
|
}
|
|
|
|
app-sidebar-mobile {
|
|
display: unset;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 450px) {
|
|
.main-content {
|
|
padding: 16px;
|
|
}
|
|
}
|