Skip to content

Commit

Permalink
scss - replaced import with use
Browse files Browse the repository at this point in the history
  • Loading branch information
brianvoe committed Nov 21, 2024
1 parent 1b42ced commit 789f05d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/docs/assets/scss/index.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@import '_variables';
@import 'layout';
@import 'prism';
@import 'misc';
@import 'animations';
@import 'button';
@import 'input';
@import 'alert';
@import 'slim';
@use '_variables';
@use 'layout';
@use 'prism';
@use 'misc';
@use 'animations';
@use 'button';
@use 'input';
@use 'alert';
@use 'slim';
2 changes: 1 addition & 1 deletion src/docs/assets/scss/slim.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '../../../slim-select/slimselect.scss';
@use '../../../slim-select/slimselect.scss';

.ss-main,
.ss-content {
Expand Down

0 comments on commit 789f05d

Please sign in to comment.