You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If inside a tab-content with a rounded-* attribute
every first children having border get their bottom-line become transparent
See elements.here-error
Now remove rounded-box on element.remove-rounded and all the bottom lines reappears
The "error" seems to be on
.tabs-lifted:has(.tab-content[class^="rounded-"]) :first-child:not(.tab-active), .tabs-lifted:has(.tab-content[class*=" rounded-"]) :first-child:not(.tab-active)
Maybe both :first-child must be more specific to direct child (>)?
.tabs-lifted:has(.tab-content[class^="rounded-"])>:first-child:not(.tab-active),
.tabs-lifted:has(.tab-content[class*=" rounded-"])>:first-child:not(.tab-active)
Thanks in advance <3
The text was updated successfully, but these errors were encountered:
What version of daisyUI are you using?
4.0.4
Which browsers are you seeing the problem on?
Chrome
Reproduction URL
https://play.tailwindcss.com/IlBhythyXj
Describe your issue
Hello team,
If inside a tab-content with a rounded-* attribute
every first children having border get their bottom-line become transparent
See elements.here-error
Now remove rounded-box on element.remove-rounded and all the bottom lines reappears
The "error" seems to be on
.tabs-lifted:has(.tab-content[class^="rounded-"]) :first-child:not(.tab-active), .tabs-lifted:has(.tab-content[class*=" rounded-"]) :first-child:not(.tab-active)
Maybe both :first-child must be more specific to direct child (>)?
.tabs-lifted:has(.tab-content[class^="rounded-"])>:first-child:not(.tab-active),
.tabs-lifted:has(.tab-content[class*=" rounded-"])>:first-child:not(.tab-active)
Thanks in advance <3
The text was updated successfully, but these errors were encountered: