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.
This commit is contained in:
Andrew Scales 2018-10-14 12:56:24 -04:00 committed by Jeremy Thomas
parent 6c86293a13
commit fe77f0b2ee

View 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 %}