Skip to content

Commit 03268e6

Browse files
committed
Fix the SCSS global variable warnings (#269)
- fix the scss version 2 warning that global variables need to be declared at the root
1 parent 47056ce commit 03268e6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/css/archwizard.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ $wz-distance-between-steps: 10px !default;
2727

2828
$wz-text-height: 14px !default;
2929

30+
// declare global variables
31+
$aw-param-indicator-width: null;
32+
$aw-param-indicator-height: null;
33+
$aw-param-indicator-border-width: null;
3034

3135
aw-wizard {
3236
display: flex;

0 commit comments

Comments
 (0)