mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-08 06:50:59 +00:00
* 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
32 lines
475 B
SCSS
32 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;
|
|
}
|
|
}
|