Complete the code to forward all styles from _buttons.scss.
@forward '[1]';
The @forward directive forwards the styles from the partial file _buttons.scss by referencing it without the underscore and extension.
Complete the code to forward only the mixins from _mixins.scss.
@forward 'mixins' [1] (mixin);
hide or show instead of only.The @forward directive with only keyword forwards only the specified members, here the mixin.
Fix the error in the forward statement to correctly hide variables.
@forward 'colors' [1] (variable);
only instead of hide.show which is not valid.The hide keyword hides the specified members, such as variables, from being forwarded.
Fill both blanks to forward _theme.scss but hide functions and variables.
@forward '[1]' [2] (function, variable);
only instead of hide.Use @forward 'theme' hide (function, variable); to forward the file but hide functions and variables.
Fill all three blanks to forward _layout.scss, only forwarding mixins and functions.
@forward '[1]' only ([2], [3]);
hide instead of only.The correct syntax is @forward 'layout' only (function, mixin); to forward only those members.