mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
4341c34261
* Move inlined SVG to a partial. Also, add `fill="currentColor"` in the SVGs. * docs: reorder attributes
33 lines
471 B
SCSS
33 lines
471 B
SCSS
.bd-navbar {
|
|
padding: .75rem 0;
|
|
background-color: $bd-purple-bright;
|
|
|
|
.navbar-toggler {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.navbar-nav {
|
|
.nav-link {
|
|
padding-right: $spacer / 4;
|
|
padding-left: $spacer / 4;
|
|
color: rgba($white, .85);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $white;
|
|
}
|
|
|
|
&.active {
|
|
font-weight: 600;
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar-nav-svg {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
}
|
|
}
|