25 lines
386 B
SCSS
25 lines
386 B
SCSS
//
|
|
// Core: Main Header
|
|
//
|
|
|
|
.main-header {
|
|
z-index: $lte-zindex-main-header;
|
|
grid-area: #{$lte-prefix}main-header;
|
|
border-bottom: $lte-main-header-bottom-border;
|
|
|
|
.nav-link {
|
|
position: relative;
|
|
height: $nav-link-height;
|
|
}
|
|
}
|
|
|
|
// Navbar badge
|
|
.navbar-badge {
|
|
position: absolute;
|
|
top: 9px;
|
|
right: 5px;
|
|
padding: 2px 4px;
|
|
font-size: .6rem;
|
|
font-weight: 400;
|
|
}
|