replace deprecated Sass @import rules with @use
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
---
|
||||
---
|
||||
|
||||
@import "colors";
|
||||
@use "colors" as c;
|
||||
|
||||
:root {
|
||||
@include colors;
|
||||
@include light-colors;
|
||||
}
|
||||
@include c.colors;
|
||||
@include c.light-colors;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user