Skip to content

Commit

Permalink
refactor: use proper custom color import
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Mar 16, 2024
1 parent 3faaffa commit f6fd9ae
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
7 changes: 0 additions & 7 deletions resources/sass/_variables.scss

This file was deleted.

20 changes: 18 additions & 2 deletions resources/sass/app.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
@import 'variables';
@charset "utf-8";

$orange: #ff8606;
$purple: #9400ff;

$my-colors: (
"orange": $orange,
"purple": $purple
);

@use '../../../../Node/bulma-v1-private-beta/sass/utilities/derived-variables' with (
$custom-colors: $my-colors
);

@use '../../../../Node/bulma-v1-private-beta/sass' with (
$footer-padding: 3rem 1.5rem 2rem,
);

@import 'progressbar';

@import '../../../../Node/bulma-v1-private-beta/sass';
// '@creativebulma/bulma-divider';
// @import '@creativebulma/bulma-tooltip';
// @import 'bulma-ribbon/src/sass/index';
Expand Down

0 comments on commit f6fd9ae

Please sign in to comment.