Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
fix: remove unsupported "!important" keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-soft committed Jul 31, 2019
1 parent cbac3a4 commit f212f54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scss/mixins/_text-emphasis.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

@mixin text-emphasis-variant($parent, $color) {
#{$parent} {
color: $color !important;
color: $color;
}
a#{$parent} {
@include hover-focus {
color: darken($color, 10%) !important;
color: darken($color, 10%);
}
}
}

0 comments on commit f212f54

Please sign in to comment.