Skip to content

Commit

Permalink
fix sass warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
petrjasek committed Nov 12, 2024
1 parent f60686e commit b314f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/styles/labels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ $flex-align: (
color: $gray-mid;

@each $name, $color in $labels-palette {
&.label--#{$name} {
&.label--#{"" + $name} {
border-color: transparent;
color: $color;
text-decoration-color: $color;
background-color: rgba($color, 0.2);
}
}
@each $name, $color in $labels-palette {
&.label--rounded.label--#{$name} {
&.label--rounded.label--#{"" + $name} {
background-color: rgba($color, 0.2);
}
}
Expand All @@ -80,7 +80,7 @@ $flex-align: (
}
&.label--fill {
@each $name, $color in $labels-palette {
&.label--#{$name} {
&.label--#{"" + $name} {
background-color: $color;
border-color: $color;
color: $white;
Expand Down

0 comments on commit b314f51

Please sign in to comment.