Badge size chainable infolist
Is there a chainable method to increase the badge size derived from the infolist TexEntry ?
Solution:Jump to solution
Had to go back and check, but yes, although you need a custom theme:
Add a class to your css, something like:
```.f-large-badge {...
5 Replies
Possibly a combination of ->badge()->size() not sure if that would work though.
Did try that one already, and a few others...
do you find solution? i really not to customize the size but using badge is preventing it
Solution
Had to go back and check, but yes, although you need a custom theme:
Add a class to your css, something like:
then add
->extraAttributes(['class' => 'f-large-badge'])
method to your element.
My naming conventions may be confusing. 'fi-' are the filament native classes you can hook into. 'f-' is just our way of determining custom classes designated for fi components. You can call that bit whatever you want.nice got it to work thank you so much for this.