mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
be17444756
* Convert bulk of division to multiplication * Use custom divide() function instead of Dart Sass math module for greater compatibility * Apply suggestions from code review * Fix functions
33 lines
475 B
SCSS
33 lines
475 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 * .25;
|
|
padding-left: $spacer * .25;
|
|
color: rgba($white, .85);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $white;
|
|
}
|
|
|
|
&.active {
|
|
font-weight: 600;
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar-nav-svg {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
}
|
|
}
|