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
I would be better to start using mixins for options styling attributes such as border-radius, like so:
border-radius
variables.scss
$enable-rounded: true; // or false
Mixin
@mixin border-radius($radius: $border-radius) { @if $enable-rounded { border-radius: $radius; } }
Meaning you won't have unecessary CSS bloat like border-radius: 0; when it's not needed
border-radius: 0;
The text was updated successfully, but these errors were encountered:
@C-Lodder in which file you want the above changes?
Sorry, something went wrong.
No branches or pull requests
I would be better to start using mixins for options styling attributes such as
border-radius
, like so:variables.scss
Mixin
Meaning you won't have unecessary CSS bloat like
border-radius: 0;
when it's not neededThe text was updated successfully, but these errors were encountered: