mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-14 02:24:00 +01:00
26 lines
345 B
SCSS
26 lines
345 B
SCSS
|
//
|
||
|
// Main navbar
|
||
|
//
|
||
|
|
||
|
.bd-navbar {
|
||
|
padding-top: 1rem;
|
||
|
padding-bottom: 1rem;
|
||
|
margin-bottom: 0;
|
||
|
// background-color: $bd-graphite;
|
||
|
|
||
|
.nav-link {
|
||
|
color: $bd-graphite-light;
|
||
|
|
||
|
&.active,
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: $gray-dark;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
font-weight: 500;
|
||
|
}
|
||
|
}
|
||
|
}
|