-
Notifications
You must be signed in to change notification settings - Fork 968
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
mj-column stacked on desktop GMX / WEB.DE #919
Comments
Hi @vielhuber thanks for investigating this ! I thought it was only because gmx didn't support any media queries, so we skipped it Well why not to add them, but we need to check the compatibility everywhere to see if it doesn't break anything in other clients. |
GMX supports media queries. The good thing about the addition is that it makes sense from a logical viewpoint. Do you prefer a pull request or do you update the code on your own? It would be nice to have that feature also in MJML v3. |
Well MJML3 is now legacy, we won't introduce anything new in this branch (only bug fixes for breaking stuff), you can totally do a PR on MJML4 for that ! I think it need a (big?) litmus test to see across the clients how it behave with this max-width |
OK, I will do a PR on MJML4. Off topic: Do you already recommend MJML4 for production use? There's no documentation or am I wrong? |
Alpha has been quite stable, if you convert carefully your document ( remove container, apply unit everywhere, re-do ) it should be exactly as MJML3 minus some component. Yeah documentation isn't ready yet, we're doing a big pass for the first beta to update everything (contributions are welcome on this 👍) |
All information available on new features (gutter etc.) I'm currently find on the medium articles, correct? |
Exactly :) |
fix #919 column & group use max-width to handle clients that wipe imp…
Hello!
When using the german webmail clients gmx.de and web.de, mj-column items get stacked on desktop.
The reason for this is that the !important tag is stripped from these instructions:
So
becomes
So the inline styles override those media queries.
A solution to this problem is to provide max-width values additionally. So we can get a good result also on desktop without breaking the mobile first approach with this code:
Do you agree? Should I make a pull request for that?
The text was updated successfully, but these errors were encountered: