Skip to content

Commit

Permalink
Remove {font-weight:bold} from nav-pills on active
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Oct 16, 2024
1 parent 509ae5e commit 042a580
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion resources/sass/core/_navs.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@charset "UTF-8";

@import "bootstrap/scss/mixins/breakpoints";

.nav {
> li > a:focus {
background-color: transparent;
Expand Down Expand Up @@ -75,9 +77,14 @@
.nav-pills {
border-bottom: 1px solid $card-border-color;

.nav-link {
color: #777777;
}

.nav-link.active {
color: black;

&, &:hover, &:focus, &:active {
font-weight: bold;
border-bottom: 2px solid $alt-link-hover-color;
margin-bottom: -1px;
}
Expand Down

0 comments on commit 042a580

Please sign in to comment.