Skip to content

Commit

Permalink
fix(dropdowns): remove text-decoration
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Sep 21, 2020
1 parent d9827eb commit b9b610d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions assets/stylesheets/bootstrap/_dropdowns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@
@include nav-divider($dropdown-divider-bg);
}

a {
text-decoration: none;
}

// Links within the dropdown menu
> li > a {
display: block;
Expand All @@ -77,6 +81,7 @@
text-decoration: none;
}


> li > button {
touch-action: manipulation;
width: 100%;
Expand All @@ -92,15 +97,15 @@
}
}



// Hover/Focus state
.dropdown-menu > li > a,
.dropdown-menu > li > button {
&:hover {
text-decoration: none;
color: $dropdown-link-hover-bg;
// color: $dropdown-link-hover-color;
background-color: $gray200;
// background-color: $dropdown-link-hover-bg;
}

&:focus {
Expand Down

0 comments on commit b9b610d

Please sign in to comment.