You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@use and @forward are used to reference other files, as well as @import
Sass also allows comma separated @import values. @import 'foundation/code', 'foundation/lists';
Sass allows media queries in the @import statements @import "landscape" screen and (orientation: landscape);
Sass has weird resolution rules for @import "file": It looks for file.css, file.sass, file.scss, _file.scss, _file.sass, file/_index.scss, etc. I’m not sure exactly what the priorities of them are, but I think the underscores take precedence.