Skip to content

Commit

Permalink
Fix text overflowing and the active item colour on the icon for the s…
Browse files Browse the repository at this point in the history
…ettings menu on the navbar.
  • Loading branch information
gjb2048 committed Jan 22, 2020
1 parent 5e8a207 commit 3332aac
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions scss/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,22 @@
margin: 7px 7px 7px 0;
}

.navbar-dark .popover-region-nsm a .icon {
color: $navbar-dark-color;
.navbar-dark .popover-region-nsm {
a .icon {
color: $navbar-dark-color;
}
.dropdown-item:active a .icon {
color: $black;
}
}
.navbar-light .popover-region-nsm a .icon {
color: $navbar-light-color;

.navbar-light .popover-region-nsm {
a .icon {
color: $navbar-light-color;
}
.dropdown-item:active a .icon {
color: $white;
}
}

.navbar-dark .navbar-nav .popover-region-nsm.nav-link,
Expand Down Expand Up @@ -211,6 +222,7 @@
.dropdown-menu {
left: -25px;
margin-top: 13px;
right: auto;
}
}

Expand Down

0 comments on commit 3332aac

Please sign in to comment.