Reproduction URL (Required)
https://play.tailwindcss.com/1t3Zv6Unv8
What version of daisyUI are you using?
5.0.12
Which browsers are you seeing the problem on?
All browsers
Describe your issue
When use collapse with collapse-open the collapse-content element transition didn't happen.
The cause: in the daisyui collapse.css source code i found the following typo:
.collapse-open {
grid-template-rows: max-content 1fr;
.collapse-content {
visibility: visible;
min-height: fit-content;
padding-bottom: 1rem;
transition:
padding 0.2sease-out, <- no space
background-color 0.2sease-out; <- no space
}
}
Reproduction URL (Required)
https://play.tailwindcss.com/1t3Zv6Unv8
What version of daisyUI are you using?
5.0.12
Which browsers are you seeing the problem on?
All browsers
Describe your issue
When use collapse with collapse-open the collapse-content element transition didn't happen.
The cause: in the daisyui collapse.css source code i found the following typo:
.collapse-open {
grid-template-rows: max-content 1fr;