-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
Remove only screen and
from @media
inside reflex order helpers
#65
Comments
I think my intention here was not to apply the grid to any other media type such as |
Personally, I don't think there is a risk of not specifying I took a look at
After some research W3C Media Types and W3C Media Queries
The idea behind my proposal is to homogenize all the Tell me what you think about. |
Thanks for explaining it. I agree with your proposal and your reasons. I think we can follow the majority and use |
Hello 👋
First of all, many thanks for your work ... I ❤️ this CSS library.
I used it a lot and still today in many projects in production 🚀
I have a question regarding media queries:
Is there a specific reason to use
@media only screen and (min-width: $reflex-xs)
for "reflex order helpers generation" instead of@media (min-width: $reflex-xs)
.reflex/scss/includes/_grid.scss
Lines 167 to 169 in 208a32a
❔ I'm asking you this question because when we/you use a plugin like gulp-group-css-media-queries we have declacrations redundant
@media only screen and (min-width...
and@media (min-width...
instead of letting the tool merge all into@media (min-width...
due to theonly screen and
keywords.💡 The idea behind (if there is no specific reason), it would be to homogenize
@media
by removingonly screen and
(or addingonly screen and
to all others) in order to have a lighter built CSS .Best Regards
Yoann
The text was updated successfully, but these errors were encountered: