Skip to content

Commit

Permalink
Fix for custom property names in some versions of sass.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalven committed Jun 29, 2021
1 parent 6e4f7e2 commit b4fc6f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _fluid-size.scss
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ $output-fluid-size-custom-properties: true !default;

@mixin output-fluid-size-custom-properties {
@each $key, $val in $fluid-sizes {
@include output-fluid-sizes($val, margin, $custom-property-name: 'fluid-size-' + #{$key});
@include output-fluid-sizes($val, margin, $custom-property-name: 'fluid-size-#{$key}');
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@malven/sass-toolkit",
"version": "3.0.0",
"version": "3.0.1",
"description": "A collection of foundational utilities for Sass",
"repository": {
"type": "git",
Expand Down

0 comments on commit b4fc6f5

Please sign in to comment.