MaxKB/ui/src/layout/layout-template/index.scss
wangdan-fit2cloud c8ce7e28d8 feat: layout
2025-04-30 14:53:58 +08:00

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;
}
}