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
Putting a class on <TabPanel> doesn't get passed down to the html
so this: <TabPanel name="1" title="Login" class="rounded-xl m-0">
resutls in this <div class="dv-tab-content">
The text was updated successfully, but these errors were encountered:
TabPanel can be understood as a "placeholder" component that does not render content itself. Its job is to send its props and children to Tabs for rendering. From another perspective, the <div class="dv-tab-content"> is defined within Tabs and currently cannot be configured.
If you want to apply some style to tab content, can you try like this?
Finally, thank you for using this library! But to be honest, I do not recommend using it at this time as some of the designs and implementations are not very mature, and there will be some changes in the future that may cause you trouble.
Thank you. Initially i just needed to remove the margin-top: 8px; but later wanted to add a border and more. So in the end i had to put another div inside so i can add flex etc.
Putting a class on
<TabPanel>
doesn't get passed down to the htmlso this:
<TabPanel name="1" title="Login" class="rounded-xl m-0">
resutls in this
<div class="dv-tab-content">
The text was updated successfully, but these errors were encountered: