Skip to content

Instantly share code, notes, and snippets.

@bj-mcduck
Created November 24, 2014 22:20
Show Gist options
  • Save bj-mcduck/f2ed9aed03fec74e5b6b to your computer and use it in GitHub Desktop.
Save bj-mcduck/f2ed9aed03fec74e5b6b to your computer and use it in GitHub Desktop.
third-party-file.scss
//my-file.scss
$my-new-variable: #ccc;
@import 'third-party/third-party-file';
//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';
@bj-mcduck
Copy link
Author

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment