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
Already with this sass eg.:
.foo { @include breakpoint($large) { color: #333; } } .bar { @include breakpoint($large) { display: none; } }
compiles to css:
@media (min-width: 1200px) { .foo { color: #333; } } @media (min-width: 1200px) { .bar { display: none; } }
So - can it be grouped and compiled to:
@media (min-width: 1200px) { .foo { color: #333; } .bar { display: none; } }
It saves some css file size.
The text was updated successfully, but these errors were encountered:
I use css-mqpacker, works really well with breakpoint.
Sorry, something went wrong.
No branches or pull requests
Already with this sass eg.:
compiles to css:
So - can it be grouped and compiled to:
It saves some css file size.
The text was updated successfully, but these errors were encountered: