AdminLTE/scss/layout/_layout-fixed.scss

52 lines
1.0 KiB
SCSS
Raw Normal View History

2021-05-13 01:17:47 +00:00
@include media-breakpoint-up(md) {
.layout-fixed:not(.sidebar-horizontal) {
.main-brand {
bottom: 0;
float: none;
left: 0;
position: fixed;
top: 0;
}
2021-05-13 01:17:47 +00:00
.main-sidebar {
bottom: 0;
float: none;
left: 0;
position: fixed;
top: auto;
}
.main-header,
.content-wrapper,
.main-footer {
2021-05-13 01:17:47 +00:00
margin-left: $sidebar-width;
transition: $transition-speed $transition-fn;
}
2021-05-13 01:17:47 +00:00
&.sidebar-collapse {
.main-header,
.content-wrapper,
.main-footer {
margin-left: $sidebar-mini-width;
}
}
&.sidebar-close {
.main-header,
.content-wrapper,
.main-footer {
margin-left: 0;
}
}
}
2021-05-13 01:17:47 +00:00
.layout-fixed .wrapper .sidebar {
// stylelint-disable-next-line
height: calc(100vh - #{$main-header-height-inner});
}
// .layout-fixed.text-sm .wrapper .sidebar {
// // stylelint-disable-next-line
// height: calc(100vh - (#{$main-header-height-sm-inner} + #{$main-header-bottom-border-width}));
// }
}