Skip to content

Commit

Permalink
Something to try about !important in color-bg helper
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton authored and mdo committed May 20, 2022
1 parent 8959bf3 commit c53312d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/helpers/_color-bg.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// stylelint-disable declaration-no-important, function-name-case
// stylelint-disable function-name-case

// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
@each $color, $value in $theme-colors {
$color-rgb: to-rgb($value);
.text-bg-#{$color} {
color: color-contrast($value) !important;
background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) !important;
color: color-contrast($value) if($enable-important-utilities, !important, null);
background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
}
}

0 comments on commit c53312d

Please sign in to comment.