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
I'm trying to change a color for logo using flowbite CSS (tailwind)
Set variable to white
:root { --docsearch-logo-color: #fff; }
in project.json I have
"styles": [ "node_modules/@docsearch/css/dist/style.css", "apps/docs/src/styles.css" ],
But nothing changes
Can you suggest to me where I'm wrong?
The text was updated successfully, but these errors were encountered:
Observed the same thing while trying to use this same custom property. Sounds like a bug. Here is the workaround I've used if it can help someone :)
.DocSearch-Logo svg .cls-1, .DocSearch-Logo svg .cls-2 { fill: var(--docsearch-logo-color); }
Sorry, something went wrong.
No branches or pull requests
I'm trying to change a color for logo using flowbite CSS (tailwind)
Set variable to white
in project.json I have
But nothing changes
Can you suggest to me where I'm wrong?
The text was updated successfully, but these errors were encountered: