Update index.md (#34770)

This commit is contained in:
The Coding Aviator
2019-01-16 03:51:00 +05:30
committed by Tom
parent 06dc16ca79
commit 624ce364df

View File

@ -3,8 +3,13 @@ title: Split Your Styles into Smaller Chunks with Partials
---
## Split Your Styles into Smaller Chunks with Partials
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
### Hint
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
Use `@import`
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
### Solution
Use `@import` to import `_variables.scss` like:
```sass
@import 'variables'
```