Skip to content

How to Disable ScrollBar Customization of DaisyUI #3113

Answered by flomero
Keshav-writes-code asked this question in Q&A
Discussion options

You must be logged in to vote

tailwind changes the scrollbar-color property of everything on your page. can you try adding this to remove the tailwind styles

*,
*:hover {
    scrollbar-color: auto;
}

If scrollbar-color and scrollbar-width are supported and have any value other than auto set, they will override ::-webkit-scrollbar-* styling. See Adding a fallback for scrollbar styles for more details.

see: https://developer.mozilla.org/en-US/docs/Web/CSS/::-webkit-scrollbar

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Keshav-writes-code
Comment options

Answer selected by saadeghi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants