From fe77f0b2eebae4dcb5d875fd645d56e75b2c2ec1 Mon Sep 17 00:00:00 2001 From: Andrew Scales Date: Sun, 14 Oct 2018 12:56:24 -0400 Subject: [PATCH] Webpack instructions - Update to fix missing semicolon added in a missing semicolon that breaks imports when using sass-loader with webpack if the code is copied directly into a .SCSS file. --- docs/_includes/steps/add-custom-styles.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_includes/steps/add-custom-styles.html b/docs/_includes/steps/add-custom-styles.html index 101c9ef25..42cb4f2e9 100644 --- a/docs/_includes/steps/add-custom-styles.html +++ b/docs/_includes/steps/add-custom-styles.html @@ -33,7 +33,7 @@ $input-shadow: none; @import "../node_modules/bulma/sass/elements/container.sass"; @import "../node_modules/bulma/sass/elements/form.sass"; @import "../node_modules/bulma/sass/elements/title.sass"; -@import "../node_modules/bulma/sass/components/navbar.sass" +@import "../node_modules/bulma/sass/components/navbar.sass"; @import "../node_modules/bulma/sass/layout/hero.sass"; @import "../node_modules/bulma/sass/layout/section.sass"; {% endcapture %} -- 2.47.3