Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
fix(css): fix import path on scss
Browse files Browse the repository at this point in the history
  • Loading branch information
nogic1008 committed Aug 10, 2022
1 parent 71a45c3 commit 9779c05
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions assets/css/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Import Bulma's core
@import '~bulma/sass/utilities/initial-variables';
@import '~bulma/sass/utilities/functions';
@import '~bulma/sass/utilities/derived-variables';
@import 'bulma/sass/utilities/initial-variables';
@import 'bulma/sass/utilities/functions';
@import 'bulma/sass/utilities/derived-variables';

// Set your colors
$custom-colors: (
Expand Down
10 changes: 5 additions & 5 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@import 'colors';
@import '~bulma/sass/utilities/mixins';
@import '~bulma/sass/utilities/controls';
@import '~bulma/sass/utilities/extends';
@import 'bulma/sass/utilities/mixins';
@import 'bulma/sass/utilities/controls';
@import 'bulma/sass/utilities/extends';

// Import Bulma and Oruga styles
@import '~bulma/bulma';
@import '~@oruga-ui/theme-bulma/dist/scss/bulma';
@import 'bulma/bulma';
@import '@oruga-ui/theme-bulma/dist/scss/bulma';

0 comments on commit 9779c05

Please sign in to comment.