Toggle in Vue doesn't render correctly #3496
-
Beta Was this translation helpful? Give feedback.
Answered by
saadeghi
Feb 18, 2025
Replies: 1 comment
-
Probably you're using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
saadeghi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Probably you're using
@tailwindcss/forms
(or another style or plugin) that is affecting form elements.daisyUI applies styles to class names but
@tailwindcss/forms
by default, applies styles to ALL form elements.If you really need
@tailwindcss/forms
alongside with daisyUI (which I doubt, because both are doing the same job) consider using itsstrategy: 'class'
config so it only applies style to the elements with specific class name (not all form elements)