Add new 'use' and 'forward' at-rules to the overview (#397)

This commit is contained in:
Wim Hendrikx 2019-10-22 22:01:11 +02:00 committed by Natalie Weizenbaum
parent ba7c79e69a
commit ddcbc9fd44

View File

@ -7,6 +7,13 @@ introduction: >
overview: true
---
* [`@use`](at-rules/use) loads mixins, functions, and variables from other Sass
stylesheets, and combines CSS from multiple stylesheets together.
* [`@forward`](at-rules/forward) loads a Sass stylesheet and makes its mixins,
functions, and variables available when your stylesheet is loaded with the `@use`
rule.
* [`@import`](at-rules/import) extends the CSS at-rule to load styles, mixins,
functions, and variables from other stylesheets.