-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
Keep @media
query CSS for responsive
#265
Comments
Would keeping |
@Stranger6667 Keeping the If keeping the <style>
h1 {
font-size: 14px;
}
</style>
<style data-css-inline="keep">
@media only screen and (max-width: 620px) {
h1 {
font-size: 16px;
}
}
</style>
<h1>Hello</h1> |
Mostly notes for myself. Filtering on the The implementation itself is a new parser that will drop all regular declarations (in |
FYI @lepture I've implemented |
For example:
Should be converted to:
The media query is used for responsive emails.
The text was updated successfully, but these errors were encountered: