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
This is a TINY bug. The color of the menu link arrows in dark mode is black.
Yes
The colour should be the same as if it was in light mode.
This is caused because of the black background and the transparency in the arrow svg fill (rgba(0,0,0,0.5))
rgba(0,0,0,0.5)
.menu .menu__link.menu__link--sublist:after { background-image: url('data:image/svg+xml;utf8,<svg alt="Arrow" xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>); background-size: 2rem 2rem; background-position: 50%; content: " "; display: inline-block; height: 1.25rem; width: 1.25rem; }
Instead of using an rgba value use an explicit rgb value (e.g. #8a8a8a or rgb(138, 138, 138))
#8a8a8a
rgb(138, 138, 138)
The text was updated successfully, but these errors were encountered:
Its one of our dependency (currently still closed source) bug. But we will fix it there
Sorry, something went wrong.
yangshun
Successfully merging a pull request may close this issue.
🐛 Bug Report
This is a TINY bug. The color of the menu link arrows in dark mode is black.
Have you read the Contributing Guidelines on issues?
Yes
Screenshot
Expected behavior
The colour should be the same as if it was in light mode.
Actual behavior
This is caused because of the black background and the transparency in the arrow svg fill (
rgba(0,0,0,0.5)
)Possible solution
Instead of using an rgba value use an explicit rgb value (e.g.
#8a8a8a
orrgb(138, 138, 138)
)The text was updated successfully, but these errors were encountered: