From: Andrew Scales Date: Sun, 14 Oct 2018 16:56:24 +0000 (-0400) Subject: Webpack instructions - Update to fix missing semicolon X-Git-Tag: 0.7.3~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe77f0b2eebae4dcb5d875fd645d56e75b2c2ec1;p=thirdparty%2Fbulma.git 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. --- 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 %}