mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-31 10:12:51 +00:00
25 lines
445 B
SCSS
25 lines
445 B
SCSS
.app-layout {
|
|
background-color: var(--app-layout-bg-color);
|
|
height: 100%;
|
|
}
|
|
|
|
.app-header {
|
|
background: var(--app-header-bg-color);
|
|
position: fixed;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.app-main {
|
|
position: relative;
|
|
height: 100%;
|
|
padding: var(--app-header-height) 0 0 !important;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
&.isExpire {
|
|
padding-top: calc(var(--app-header-height) + 40px) !important;
|
|
}
|
|
}
|