My Bulkaction buttons do not fit in the table, can we add scroll?
As shown in the picture, the bulkactions do not fit on the page, can I add a scroll to them or how do I fit them?
Another question is, as soon as the page is loaded, can I bring one of the records as selected so that the bulkaction buttons are always visible?
9 Replies
Gruplayabilirsin aslında, o şekilde denedin mi
Hi, which theme you're using.. minimal or others? thanks
Gruplamak değil aslında amacım ayrı ayrı görünmeleri gerekiyor da
Minimal
I don't use the group bulk actions
You can change the overflow using the fi-ta-header hook class
https://filamentphp.com/docs/3.x/support/style-customization#applying-styles-to-hook-classes
.fi-ta-header {
overflow: scroll;
overflow-y: hidden;
}
or change the display to block instead of flex
.fi-ta-header {
display: block;
}
Can you describe exactly how to apply this css file?