diff --git a/guide/english/certifications/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials/index.md b/guide/english/certifications/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials/index.md
index 8680a96dba..bc65eaf2ef 100644
--- a/guide/english/certifications/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials/index.md
+++ b/guide/english/certifications/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials/index.md
@@ -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. Help our community expand it.
+### Hint
-This quick style guide will help ensure your pull request gets accepted.
+Use `@import`
-
+### Solution
+
+Use `@import` to import `_variables.scss` like:
+```sass
+@import 'variables'
+```