61 lines
1012 B
SCSS
61 lines
1012 B
SCSS
// file: crates/ksp-app-config-desk/frontend/sass/_app.scss
|
|
// version: 1
|
|
|
|
$app-header-height: 72px;
|
|
$app-footer-height: 42px;
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background: $gray-100;
|
|
}
|
|
|
|
.app-header {
|
|
position: fixed;
|
|
inset: 0 0 auto;
|
|
height: $app-header-height;
|
|
z-index: 1020;
|
|
border-bottom: 2px solid rgba($primary, 0.3);
|
|
}
|
|
|
|
.app-footer {
|
|
position: fixed;
|
|
inset: auto 0 0;
|
|
height: $app-footer-height;
|
|
z-index: 1020;
|
|
border-top: 2px solid rgba($primary, 0.3);
|
|
}
|
|
|
|
.app-main {
|
|
position: relative;
|
|
height: calc(100vh - $app-header-height - $app-footer-height);
|
|
margin-top: $app-header-height;
|
|
margin-bottom: $app-footer-height;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.app-scrollable {
|
|
height: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.app-logo {
|
|
display: block;
|
|
width: auto;
|
|
height: 42px;
|
|
}
|
|
|
|
.app-shell-card {
|
|
max-width: 980px;
|
|
}
|
|
|
|
.app-shell-status {
|
|
font-family: var(--bs-font-monospace);
|
|
}
|