Skip to content

Commit 1a7cc80

Browse files
authored
Refactor SCSS imports to use @use syntax and improve organization (#81)
1 parent a2f3868 commit 1a7cc80

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

assets/style.scss

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
// IMPORTS
66
//
77

8-
@import "reset";
9-
@import "variables";
10-
// Syntax highlighting @import is at the bottom of this file
8+
@use "reset";
9+
@use "variables" as *;
10+
@use "darcula";
11+
@use "svg-icons";
1112

1213
/**************/
1314
/* BASE RULES */
@@ -1290,8 +1291,3 @@ Modules - reusable parts of our design
12901291
margin: 20px 0;
12911292
}
12921293

1293-
// Settled on moving the import of syntax highlighting to the bottom of the CSS
1294-
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
1295-
//@import "highlights";
1296-
@import "darcula";
1297-
@import "svg-icons";

0 commit comments

Comments
 (0)