]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Webpack instructions - Update to fix missing semicolon
authorAndrew Scales <scales44@gmail.com>
Sun, 14 Oct 2018 16:56:24 +0000 (12:56 -0400)
committerJeremy Thomas <bbxdesign@gmail.com>
Mon, 15 Oct 2018 07:18:20 +0000 (08:18 +0100)
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

index 101c9ef2558b9c14b6675bc78bae1ac9a593018d..42cb4f2e946a81735962ef0b3ade82ea885be8f3 100644 (file)
@@ -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 %}