fix: import bulma utilities global
continuous-integration/drone/pr Build is passing Details

SCSS default values do have to be defined before; see: https://sass-lang.com/documentation/variables#default-values
This commit is contained in:
Dominik Pschenitschni 2021-09-10 18:29:54 +02:00
parent 50c1a2e4d5
commit 7955abc28a
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
2 changed files with 13 additions and 11 deletions

View File

@ -1,11 +1,12 @@
// utilities are imported in variables.scss
@import "../../../node_modules/bulma/sass/base/_all";
@import "../../../node_modules/bulma/sass/elements/_all";
@import "../../../node_modules/bulma/sass/form/_all";
@import "../../../node_modules/bulma/sass/components/_all";
@import "../../../node_modules/bulma/sass/grid/_all";
@import "../../../node_modules/bulma/sass/helpers/_all";
@import "../../../node_modules/bulma/sass/layout/_all";
// bulma utilities are imported in variables.scss
@import "bulma/sass/utilities/_all";
@import "bulma/sass/base/_all";
@import "bulma/sass/elements/_all";
@import "bulma/sass/form/_all";
@import "bulma/sass/components/_all";
@import "bulma/sass/grid/_all";
@import "bulma/sass/helpers/_all";
@import "bulma/sass/layout/_all";
@import "fonts";

View File

@ -1,5 +1,6 @@
@import "../../../node_modules/bulma/sass/utilities/_all";
@import 'colors';
@import 'shadows';
@import 'variables';
@import 'variables';
// the default values get overwritten by the definitions above
@import "bulma/sass/utilities/_all";