mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-14 02:24:00 +01:00
b68acc8938
- clean out commented out code - break apart homepage.scss into sub files by component - rename a few files to reflect their new component names
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;
|
|
}
|
|
}
|
|
}
|