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
https://github.com/saadeghi/daisyui/blob/master/src/components/styled/range.css
.range { -webkit-appearance: none;
should be replaced by
.range { appearance: none; -webkit-appearance: none;
as well as
&::-webkit-slider-thumb { background-color: hsl(var(--b1)); @apply relative h-6 w-6 border-none rounded-box; -webkit-appearance: none;
&::-webkit-slider-thumb { background-color: hsl(var(--b1)); @apply relative h-6 w-6 border-none rounded-box; appearance: none; -webkit-appearance: none;
The text was updated successfully, but these errors were encountered:
fe0d201
fix: saadeghi#1266
dd836bd
No branches or pull requests
https://github.com/saadeghi/daisyui/blob/master/src/components/styled/range.css
should be replaced by
as well as
should be replaced by
The text was updated successfully, but these errors were encountered: