We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each variable should be used only once outside of other variables.
Incorrect
variables/_type.scss $line-height: 24px !default; mixins/_content-block.scss @mixin content-block($spacing: $line-height, $location: bottom ) {}
Also see:
illusion/scss/tools/mixins/_content-block.scss
Line 3 in d4f32f8
Correct:
variables/_type.scss $line-height: 24px !default; $content-block-margin: $line-height !default; mixins/_content-block.scss @mixin content-block($spacing: $line-height, $location: bottom ) {}
In short, do not re-use variables directly on other elements they are meant for but use a middle-variable instead.
The text was updated successfully, but these errors were encountered:
#22: Improve variables
62e0035
https://github.com/timble/illusion/releases/tag/v4.0.0
Sorry, something went wrong.
robinpoort
No branches or pull requests
Each variable should be used only once outside of other variables.
Incorrect
Also see:
illusion/scss/tools/mixins/_content-block.scss
Line 3 in d4f32f8
Correct:
In short, do not re-use variables directly on other elements they are meant for but use a middle-variable instead.
The text was updated successfully, but these errors were encountered: