AdminLTE/scss/_main-header.scss

28 lines
431 B
SCSS
Raw Normal View History

2021-03-26 01:16:42 +00:00
//
// Core: Main Header
//
2021-05-13 20:30:52 +00:00
@include header-variant(
$header-light-bg,
$header-light-color,
$header-mobile-light-bg,
$header-mobile-light-color
);
2021-03-26 01:16:42 +00:00
.main-header {
grid-area: main-header;
2021-03-26 01:16:42 +00:00
border-bottom: $main-header-bottom-border;
2021-05-08 16:43:00 +00:00
width: inherit;
2021-03-26 01:16:42 +00:00
z-index: $zindex-main-header;
2021-05-08 16:43:00 +00:00
}
.layout-navbar-fixed {
.main-header {
// position: fixed;
2021-05-08 16:43:00 +00:00
}
.content-wrapper {
// margin-top: $main-header-height;
2021-03-26 01:16:42 +00:00
}
}