49 lines
1.2 KiB
SCSS
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;
|
|
}
|
|
}
|
|
|