Answers for "difference between scss and css variables"

CSS
0

sass variables across files

// When importing the master, you leave out the underscore, and it
// will look for a file with the underscore. This prevents the SCSS
// compiler from generating a CSS file from it.
@import "assets/master";

// Then do the rest of my CSS afterwards:
.text { color: $accent; }
Posted by: Guest on January-26-2021

Code answers related to "difference between scss and css variables"

Browse Popular Code Answers by Language