Complete the code to import the main Sass file from the base folder.
@import '[1]/main';
The base folder contains foundational styles like resets and typography. Importing base/main brings these core styles into your project.
Complete the code to import all component partials using the 7-1 pattern.
@import '[1]/*';
* to import all partials.The components folder holds reusable UI parts like buttons and cards. Importing components/* brings in all component partials.
Fix the error in this import statement to correctly import the layout partial.
@import '[1]layout';
To import the layout folder partial, you need a slash after the folder name. layout/ correctly points to the folder.
Fill both blanks to create a partial import for the _variables.scss file inside the settings folder.
@import '[1]/[2]';
The settings folder holds configuration files like variables. The partial file is named _variables.scss, so you import it as variables without the underscore or extension.
Fill all three blanks to create a map of folder names to their purpose in the 7-1 pattern.
$folders: ( '[1]': 'global variables and settings', '[2]': 'UI components like buttons', '[3]': 'page-specific styles' );
The settings folder holds global variables and settings. components contains UI parts like buttons. pages holds styles specific to individual pages.