Files
AdminLTE/src/scss/_app-content.scss
REJack 60dade8951 feat: add app-content-top-area class & adjust app-main padding
- adjust app-main padding-botto to correct padding as with a row (1/2 of gutter width)
2023-06-21 01:31:40 +02:00

49 lines
1.2 KiB
SCSS

.app-content {
padding: $lte-content-padding-y $lte-content-padding-x;
}
.app-content-top-area,
.app-content-bottom-area{
display: flex;
align-items: center;
padding: $lte-content-padding-y $lte-content-padding-x;
overflow: auto;
background: $lte-app-footer-bg;
> .row {
display: contents;
}
&:not(.app-content-bottom-area-md),
&:not(.app-content-bottom-area-lg),
&:not(.app-content-bottom-area-xl) {
min-height: $lte-app-content-bottom-area-height-sm;
max-height: $lte-app-content-bottom-area-height-sm;
}
&.app-content-bottom-area-md {
min-height: $lte-app-content-bottom-area-height-md;
max-height: $lte-app-content-bottom-area-height-md;
}
&.app-content-bottom-area-lg {
min-height: $lte-app-content-bottom-area-height-lg;
max-height: $lte-app-content-bottom-area-height-lg;
}
&.app-content-bottom-area-xl {
min-height: $lte-app-content-bottom-area-height-xl;
max-height: $lte-app-content-bottom-area-height-xl;
}
}
.app-content-bottom-area {
border-top: $lte-app-footer-border-top;
}
.app-content-top-area {
border-bottom: $lte-app-footer-border-top;
& + .app-main {
padding-top: $grid-gutter-width * 0.5;
}
}