Files
drmaterac.pl/iadmin/themes/new-theme/scss/components/layout/_content_div.scss
2025-01-06 20:47:25 +01:00

31 lines
803 B
SCSS

.content-div {
padding-left: $size-navbar-width + ($grid-gutter-width / 2);
padding-right: $grid-gutter-width / 2;
padding-top: $size-header-height + $size-header-toolbar-height + ($grid-gutter-width / 2);
padding-bottom: $grid-gutter-width / 2;
transition: padding .5s ease; // transition when collapsing the nav menu
.mobile & {
@include media-breakpoint-down(sm) {
padding-top: 10.4rem;
}
padding-left: 0;
padding-right: 0;
}
&.-notoolbar {
padding-top: $size-header-height + $grid-gutter-width / 2;
}
&.with-tabs {
padding-top: $size-header-height + $size-header-toolbar-height + $grid-gutter-width + 2.5rem;
}
}
.page-sidebar-closed:not(.mobile) {
.content-div {
padding-left: $size-navbar-width-mini + ($grid-gutter-width / 2);
}
}