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

Commit f212f54

Browse files
committed
fix: remove unsupported "!important" keyword
1 parent cbac3a4 commit f212f54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scss/mixins/_text-emphasis.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
@mixin text-emphasis-variant($parent, $color) {
66
#{$parent} {
7-
color: $color !important;
7+
color: $color;
88
}
99
a#{$parent} {
1010
@include hover-focus {
11-
color: darken($color, 10%) !important;
11+
color: darken($color, 10%);
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)