sass variables across files

Solutions on MaxInterview for sass variables across files by the best coders in the world

showing results for - "sass variables across files"
Matheo
23 Feb 2017
1// When importing the master, you leave out the underscore, and it
2// will look for a file with the underscore. This prevents the SCSS
3// compiler from generating a CSS file from it.
4@import "assets/master";
5
6// Then do the rest of my CSS afterwards:
7.text { color: $accent; }
8
Charla
25 Nov 2016
1// assets/_master.scss 
2$accent: #6D87A7;           
3$error: #811702;
4
similar questions
queries leading to this page
sass variables across files