AdminLTE/scss/mixins/_header-variant.scss

32 lines
472 B
SCSS
Raw Normal View History

2021-05-13 20:30:52 +00:00
//
// Mixins: Sidebar Variant
//
@mixin header-variant(
$header-bg,
$header-color,
$header-mobile-bg,
$header-mobile-color
) {
.main-header {
background-color: $header-bg;
color: $header-color;
.nav-link {
color: $dark;
&:hover,
&:focus {
color: $black;
}
}
}
@include media-breakpoint-down(md) {
.main-header {
background-color: $header-mobile-bg;
color: $header-mobile-color;
}
}
}