-
Notifications
You must be signed in to change notification settings - Fork 200
Mobile dark mode text overflow unreadable #1167
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
Comments
@peterbecich thoughts? |
The problem&answer is right at the top of html {
background-color: white;
width: 100%;
height: 100%;
}
@media (prefers-color-scheme: dark) {
body {
background: #333;
color: #fefefe;
}
}
@media (prefers-color-scheme: light) {
body {
background: #fefefe;
color: #333;
}
} |
peterbecich
added a commit
to peterbecich/hackage-server
that referenced
this issue
Jan 29, 2023
Merged
Thanks @aaronallen8455 and @phadej , I think it is fixed: #1163 (comment) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using chrome on my android phone and whenever text runs past the width of the screen, the dark mode background color does not extend past a single screen width resulting in white on white text.
The text was updated successfully, but these errors were encountered: