Skip to content

Commit f1f4c72

Browse files
b212
1 parent 10358c4 commit f1f4c72

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"watch" : "npm run prod -- -w"
2020
},
2121
"dependencies": {
22-
"sass": "1.81.0"
22+
"sass": "1.82.0"
2323
}
2424
}

src/Core/Global/Options.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
}
103103

104104
@if theme($module, nth($keys, 1), nth($keys, 2)) {
105-
$value : theme($module, nth($keys, 1), nth($keys, 2));
105+
$value: theme($module, nth($keys, 1), nth($keys, 2));
106106

107107
@if length($keys) > 2 {
108108
$value: theme($module, nth($keys, 1), nth($keys, 2), nth($keys, 3));

src/Modules/Utilities/helpers.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@
7272
@include set_utils('vertical-align');
7373
@include set_utils('width', true);
7474
@include set_utils('z-index');
75-
@include other_helpers();
75+
@include other_helpers();
7676
}

src/Modules/Utilities/mixins.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@
9191
$values : map.get($helpers, 'values');
9292

9393
@if $enabled {
94-
@each $suffix, $property in $values {
95-
@each $spec, $value in $specs {
96-
.#{$prefix}#{$suffix}#{$spec} {
94+
@each $infix, $property in $values {
95+
@each $suffix, $value in $specs {
96+
.#{$prefix}#{$infix}#{$suffix} {
9797
#{$property}: #{$value}#{$unit} $specificity;
9898
}
9999
}
@@ -119,15 +119,15 @@
119119

120120
@if $enabled {
121121
@for $i from 5 through 35 {
122-
@each $class, $color in $values {
122+
@each $suffix, $color in $values {
123123
// if the remainder of an integer
124124
// division of $i by 5 is zero
125125
@if $i % 5 == 0 {
126126
$percentage: $i*1%; // convert remainder to percentage
127-
.#{$prefix}#{$class}-darken-#{$i} {
127+
.#{$prefix}#{$suffix}-darken-#{$i} {
128128
#{$property}: mix(black, $color, $percentage) $specificity;
129129
}
130-
.#{$prefix}#{$class}-lighten-#{$i} {
130+
.#{$prefix}#{$suffix}-lighten-#{$i} {
131131
#{$property}: mix(white, $color, $percentage) $specificity;
132132
}
133133
}

src/punica.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
////////////////////////////////////////////////////////////////
1515
$theme-name: if(map.has-key(get.$themes, $active-theme),
1616
$active-theme, theme-not-found($active-theme));
17-
$theme : map.get(get.$themes, $theme-name) !global;
17+
$theme: map.get(get.$themes, $theme-name) !global;
1818
////////////////////////////////////////////////////////////////
1919

2020
/*!

0 commit comments

Comments
 (0)