fix: import bulma utilities global (#738)
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/738 Co-authored-by: dpschen <dpschen@noreply.kolaente.de> Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
7fbd9c6ab0
commit
3ac25c9f08
2 changed files with 13 additions and 11 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
Loading…
Reference in a new issue