Split Your Styles into Smaller Chunks with Partials

Tell us what’s happening:

Your code so far


@import 'variables.scss'



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/split-your-styles-into-smaller-chunks-with-partials

Remove the .scss extension and add a semicolon at the end.

@import 'variables';

SASS automatically looks for certain extensions.

5 Likes

Thanks this post help me to solve this problem.