Pouya Saadeghi

Results 289 comments of Pouya Saadeghi

I think the link to playground is wrong. I don't see `opacity-50`. Where do you want to apply opacity?

I'm afraid this feature is not going to be added to daisyUI unless Tailwind CSS applies the `important` to plugins as well because daisyUI only adds the additional styles to...

By default, daisyUI handles the dark mode. You won't need any `dark:` classes. Here's a working example: https://play.tailwindcss.com/z1tV76QHLF And a video: https://user-images.githubusercontent.com/7342023/199059932-83b67009-c0af-45af-bf49-b91c56022489.mp4 If that doesn't work for you, please share...

If you don't want the dropdown to work with focus, you can add or remove `dropdown-open` class. Similar issue: https://github.com/saadeghi/daisyui/issues/157 JS Example: https://play.tailwindcss.com/4Mu9MGOmat

@francescocretti If you want an event for when the dropdown is closed, it's simply the `blur` on the button: ```js onblur="console.log('blurred')" ``` https://play.tailwindcss.com/ebar5KSVd4 Let me know if that works for...

@gonzabrusco remove the `overflow-y-auto` from `menu`. https://play.tailwindcss.com/7oU2d6CFA8

Nothing's wrong. It's awesome actually. But I'm researching about different use cases to make sure it covers different design scenarios. I will apply a few changes and I will merge...

My friends, I've been trying to reproduce this in many ways but I can't see the issue. This is my code and it works as expected ```html label ``` The...

@Mashiane Can you conditionally render the optional elements using your JS library or your component props instead of adding/removing `hidden` class? Because I think that's the correct way to do....