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
Divide Color page only shows gray for all the divide borders.
By looking at the source code I figured lines 26 & 27 of src/pages/docs/divide-color.mdx could be the problem.
By replacing --divide-opacity with --tw-divide-opacity fixes the bug, like below
borderColor: Array.isArray(css['border-color']) - ? css['border-color'][0].replace('var(--divide-opacity)', '1') - : css['border-color'].replace('var(--divide-opacity)', '1'), + ? css['border-color'][0].replace('var(--tw-divide-opacity)', '1') + : css['border-color'].replace('var(--tw-divide-opacity)', '1'),
Can send a Pull Request if you guys accept.
The text was updated successfully, but these errors were encountered:
Ah good catch yeah would love a PR!
Sorry, something went wrong.
Fix(docs): replace --divide-opacity with --tw-divide-opacity (#755) (#…
590d885
…757)
No branches or pull requests
Divide Color page only shows gray for all the divide borders.
By looking at the source code I figured lines 26 & 27 of src/pages/docs/divide-color.mdx could be the problem.
By replacing --divide-opacity with --tw-divide-opacity fixes the bug, like below
Can send a Pull Request if you guys accept.
The text was updated successfully, but these errors were encountered: