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
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered:
Here has a stylesheet selection bug from src/gui/css_library.c#L1104
Example:
.col-6 { display: inline-block; max-width: 100%; } .col { width: 100%; max-width: 100%; } .col-6 { max-width: 50%; }
The effect of the above code is equivalent to the following code:
.col-6 { display: inline-block; max-width: 50%; } .col { width: 100%; max-width: 100%; }
The two stylesheets will be merged into a single styleesheet.
Sorry, something went wrong.
Fix stylesheet selection bug (#113)
3cd702b
Done.
lc-soft
No branches or pull requests
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: