From 623c037566250d4439873f14de5a092bc671ac04 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 14 Mar 2023 11:13:47 +0000 Subject: [PATCH] CSS: Import Bulma utilities first This will set all default variables in Bulma so that any of the variables that we set will take effect when importing any components. Signed-off-by: Michael Tremer --- src/scss/main.sass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/main.sass b/src/scss/main.sass index 4bd4059d..19583364 100644 --- a/src/scss/main.sass +++ b/src/scss/main.sass @@ -19,6 +19,7 @@ $button-border-width: 4px $button-padding-horizontal: 2rem // Import Bulma +@import "../third-party/bulma/sass/utilities/_all.sass" @import "../third-party/bulma/sass/base/_all.sass" @import "../third-party/bulma/sass/components/_all.sass" @import "../third-party/bulma/sass/elements/_all.sass" @@ -26,7 +27,6 @@ $button-padding-horizontal: 2rem @import "../third-party/bulma/sass/grid/_all.sass" @import "../third-party/bulma/sass/helpers/_all.sass" @import "../third-party/bulma/sass/layout/_all.sass" -@import "../third-party/bulma/sass/utilities/_all.sass" // Import fonts @import "_fonts" -- 2.47.3