create-sass-file.html 631 B

123456789101112131415161718192021222324252627
  1. {% capture scss_bulma %}
  2. @charset "utf-8";
  3. @import "{{ include.path }}/bulma/bulma.sass";
  4. {% endcapture %}
  5. {% capture step_3 %}
  6. <div class="content">
  7. <p>
  8. Create a <code>sass</code> folder in which you add a file called <code>mystyles.scss</code>:
  9. </p>
  10. </div>
  11. {% highlight scss %}{{ scss_bulma }}{% endhighlight %}
  12. <div class="content">
  13. <p>
  14. Make sure to write the correct path to the <code>bulma.sass</code> file.
  15. </p>
  16. </div>
  17. {% endcapture %}
  18. {% assign step_title = ". Create a Sass file" | prepend: include.number %}
  19. {% include components/step.html
  20. title=step_title
  21. content=step_3
  22. %}