Created
November 24, 2014 22:20
-
-
Save bj-mcduck/f2ed9aed03fec74e5b6b to your computer and use it in GitHub Desktop.
third-party-file.scss
This file contains 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
//my-file.scss | |
$my-new-variable: #ccc; | |
@import 'third-party/third-party-file'; |
This file contains 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
//third-party/third-party-file.scss | |
@import 'third-party/file1'; | |
@import 'third-party/file2'; | |
@import 'third-party/file3'; | |
@import 'third-party/file4'; | |
@import 'third-party/file5'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the imports in the third-party-file break as the relative path is not the same.
What is the best practice for including, and changing the variables in the third-party-file?