Skip to content

Commit

Permalink
fix: fixed prefix in utilities generator
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes authored Jan 21, 2023
1 parent bf93fa4 commit 40c8b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion low/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
// Generate utility rules for each variant
@each $variant in $variants {
@each $key,$value in $values {
$selector: "#{$class}#{config.$separator}#{$key}";
$selector: "#{config.$prefix}#{$class}#{config.$separator}#{$key}";
// Pseudo variant selector
@if map.has-key(config.$pseudos, $variant) {
$pseudo: map.get(config.$pseudos, $variant);
Expand Down

0 comments on commit 40c8b3e

Please sign in to comment.