From: Gabriel Pettier Date: Wed, 1 Jan 2020 03:48:38 +0000 (+0100) Subject: fix bulma.sass path X-Git-Tag: 0.8.1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=617febbfbf5b95e827d20654a16748c66bb5d647;p=thirdparty%2Fbulma.git 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. --- diff --git a/docs/documentation/customize/with-sass-cli.html b/docs/documentation/customize/with-sass-cli.html index 50d52f6bb..d48c1914a 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"