Text formatting for badges doesn't work
As said in the docs, all formatting options that work for TextColumn should also work for BadgeColumn but for me this doesn't have any effect on the badges. No matter what size or weight I specify, nothing changes. It works for my TextColumn though.
My code:
Current Filament-Version: v2.17.42
Thank you!
5 Replies
sorry, thats not what we meany by formatting
the docs should be updated
we meant stuff that uses formatStateUsing()
Maybe building a theme and editing (@apply font-semibold) the badge class:
https://filamentphp.com/docs/2.x/admin/appearance#building-themes
The main thing here is to just have the badge bigger. I would like use
text-lg
but when using ->extraAttributes(['class' => 'text-lg'])
it gets inserted one div above, so I can't overwrite it.
How should I do it?
Thank you!Maybe a custom class like
badge-lg
, and then a little bit of custom CSS:
ah yeah, thank you!