SASS – use variables across multiple files
You can do it like this: I have a folder named utilities and inside that I have a file named _variables.scss in that file i declare variables like so: $black: #000; $white: #fff; then I have the style.scss file in which i import all of my other scss files like this: // Utilities @import “utilities/variables”; … Read more