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
Please check following input and output. Class layout will have height: 60px which is incorrect.
layout
height: 60px
Input
html { width: 100%; height: 100%; margin: 0; } .header { width: 100%; height: 60px; } .layout { width: 100%; height: 100%; margin: 0; padding: 0; }
Output
.layout, html { height: 100%; margin: 0 } html { width: 100% } .header, .layout { width: 100%; height: 60px } .layout { padding: 0 }
The text was updated successfully, but these errors were encountered:
@accetone I've taken a stab at a fix as a user myself. Does the following output look correct before I open a PR?
html { width: 100% } .header,.layout { width: 100%; height: 60px } .layout,html { height: 100%; margin: 0 } .layout { padding: 0 }
Sorry, something went wrong.
@charlessuh thanks, your output look correct.
Fix published in 4.0.3
No branches or pull requests
Please check following input and output. Class
layout
will haveheight: 60px
which is incorrect.Input
Output
The text was updated successfully, but these errors were encountered: