Complete the code to import a Sass partial file named '_colors.scss'.
@import '[1]';
When importing Sass partials, you omit the underscore and the file extension. So '@import "colors";' correctly imports '_colors.scss'.
Complete the code to import the partial '_variables.scss' in your main Sass file.
@import '[1]';
To import a Sass partial, you only write the file name without the underscore and extension. '@import "variables";' imports '_variables.scss'.
Fix the error in the import statement to correctly import the partial '_mixins.scss'.
@import '[1]';
When importing Sass partials, omit the underscore and file extension. '@import "mixins";' correctly imports '_mixins.scss'.
Fill both blanks to import two partials '_reset.scss' and '_base.scss' in one statement.
@import '[1]', '[2]';
When importing multiple Sass partials, omit underscores and extensions. '@import "reset", "base";' imports '_reset.scss' and '_base.scss'.
Fill all three blanks to import '_typography.scss', '_layout.scss', and '_theme.scss' partials correctly.
@import '[1]', '[2]', '[3]';
To import multiple Sass partials, list their names without underscores or extensions. '@import "typography", "layout", "theme";' imports '_typography.scss', '_layout.scss', and '_theme.scss'.