Make the tabs label full width in Filament Tabs
3aslema, recently I've used the Tabs layout in Filament Forms, and it's really amazing, it just delivers what you're expecting. But something I didn't like, or it was missing, which is I can't make the labels full width. So follow this tippy tip, on how to make it full width.
All you have to do here is add the following code to your app.css
file (supposing you're using app.css
)
button.fi-tabs-item {
@apply w-full;
}
And that's it, you're good to go.