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
The breakpoints settings page does not use the CSS range syntax that we introduced recently, such as in this PR.
Someone who follows these instructions will create styling that does not respond well to devices with fractional scaling enabled.
The examples on this page should probably be updated to use the new CSS range syntax as introduced by #5316 and similar PRs.
For example:
@media screen and (max-width: $breakpoint-small - 1) { // css }
Should be changed to
@media screen and (width < $breakpoint-small) { // css }
The text was updated successfully, but these errors were encountered:
Thank you for reporting us your feedback!
The internal ticket has been created: https://warthogs.atlassian.net/browse/WD-16073.
This message was autogenerated
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The breakpoints settings page does not use the CSS range syntax that we introduced recently, such as in this PR.
Someone who follows these instructions will create styling that does not respond well to devices with fractional scaling enabled.
The examples on this page should probably be updated to use the new CSS range syntax as introduced by #5316 and similar PRs.
For example:
Should be changed to
The text was updated successfully, but these errors were encountered: