mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
28 lines
374 B
SCSS
28 lines
374 B
SCSS
//
|
|
// Main navbar
|
|
//
|
|
|
|
.bd-navbar {
|
|
.navbar-nav {
|
|
.nav-link {
|
|
color: $bd-graphite-light;
|
|
|
|
&.active,
|
|
&:hover,
|
|
&:focus {
|
|
color: $gray-dark;
|
|
background-color: transparent;
|
|
}
|
|
|
|
&.active {
|
|
font-weight: 500;
|
|
color: darken($gray-dark, 15%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.dropdown-menu {
|
|
font-size: inherit;
|
|
}
|
|
}
|