From 617febbfbf5b95e827d20654a16748c66bb5d647 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Wed, 1 Jan 2020 04:48:38 +0100 Subject: [PATCH] fix bulma.sass path the bulma archive has bulma.sass directly at the root of the bulma-$version/ directory, not in a bulma subdirectory. contradicting the documentation. --- docs/documentation/customize/with-sass-cli.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/customize/with-sass-cli.html b/docs/documentation/customize/with-sass-cli.html index 50d52f6b..d48c1914 100644 --- a/docs/documentation/customize/with-sass-cli.html +++ b/docs/documentation/customize/with-sass-cli.html @@ -119,7 +119,7 @@ sass --watch --sourcemap=none sass/mystyles.scss:css/mystyles.css
-{% assign bulma_path = site.data.meta.version | prepend: "../bulma-" | append: "/bulma/bulma.sass" %} +{% assign bulma_path = site.data.meta.version | prepend: "../bulma-" | append: "/bulma.sass" %} {% include steps/create-sass-file.html number="3"