From 624ce364dff612745b9f2ab0f0205dea75b59b3e Mon Sep 17 00:00:00 2001
From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com>
Date: Wed, 16 Jan 2019 03:51:00 +0530
Subject: [PATCH] Update index.md (#34770)
---
.../index.md | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
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'
+```