mirror of
https://github.com/tabler/tabler.git
synced 2025-12-24 02:38:15 +04:00
40 lines
697 B
SCSS
40 lines
697 B
SCSS
.navbar {
|
|
border-bottom: 1px solid;
|
|
background-color: $navbar-bg;
|
|
border-color: $navbar-border-color;
|
|
}
|
|
|
|
/**
|
|
Navbar logo
|
|
*/
|
|
.navbar-brand-logo {
|
|
height: 2rem;
|
|
}
|
|
|
|
.navbar-nav {
|
|
flex-direction: row;
|
|
margin-right: -($navbar-padding-x);
|
|
margin-left: -($navbar-padding-x);
|
|
|
|
.nav-link {
|
|
padding-left: $navbar-nav-link-padding-x;
|
|
padding-right: $navbar-nav-link-padding-x;
|
|
}
|
|
|
|
.nav-item.active .nav-link {
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
|
|
bottom: subtract(-$navbar-padding-y, 1px);
|
|
right: $navbar-nav-link-padding-x;
|
|
left: $navbar-nav-link-padding-x;
|
|
border-bottom: 1px solid $primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
|