2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
|
title: Split Your Styles into Smaller Chunks with Partials
|
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Split Your Styles into Smaller Chunks with Partials
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
## Hints
|
|
|
|
|
|
|
|
|
|
### Hint 1
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-01-16 03:51:00 +05:30
|
|
|
Use `@import`
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
2019-01-16 03:51:00 +05:30
|
|
|
|
|
|
|
|
Use `@import` to import `_variables.scss` like:
|
2019-07-24 00:59:27 -07:00
|
|
|
|
2019-01-16 03:51:00 +05:30
|
|
|
```sass
|
|
|
|
|
@import 'variables'
|
|
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
</details>
|