-
Notifications
You must be signed in to change notification settings - Fork 665
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
"em" is missing in compressed file #108
Comments
I have (i think) a related issue. "%" is missing in compressed file: @media (min-width: 800px) { 55.0% is converted to 55.0 . |
I'm also seeing the same behavior that if you have font-size: 1.0em specified instead of 1em then the em portion gets stripped for some reason. |
@nek4life Thanks! Removing the |
original:
table thead tr td {
color: #CEDB00;
padding: 0.5em 0 1.0em 0;
text-transform: uppercase;
vertical-align: bottom;
}
compressed:
table thead tr td{color:#cedb00;padding:.5em 0 1.0 0;text-transform:uppercase;vertical-align:bottom}
Unit "em" is missing for padding bottom, so whole padding information is ignored in the browser.
Version 2.4.8
Thanks!
Andrea
The text was updated successfully, but these errors were encountered: