Created
June 19, 2018 22:10
-
-
Save farism/0921caa6b802aa83dd67e4278bed841c to your computer and use it in GitHub Desktop.
new way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// variables.scss | |
$color: "red" | |
// componentA.scss | |
@import "variables.scss" // needs this line or it wont find $color | |
.componentA { | |
color: $color; | |
} | |
// componentB.scss | |
@import "variables.scss" | |
.componentB { | |
color: $color; | |
} | |
// manifest.scss | |
@import componentA | |
@import componentB | |
// ComponentA.js | |
import 'componentA.scss' // has only componentA.scss embedded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment