#vertical align of action button and row select

3 messages · Page 1 of 1 (latest)

azure rover
#

I have all my table cell aligned to the top with verticalAlignment(VerticalAlignment::Start)

ViewColumn::make('address')->label('Address')
  ->view('filament.tables.columns.address-complete')
  ->verticalAlignment(VerticalAlignment::Start),

How can I get the action and the row select field also aligned to the top?

BTW: using global config in the ServiceProvider does also have no effect on the row select and the action button

Column::configureUsing(function (Column $column): void {
    $column
        ->verticalAlignment(VerticalAlignment::Start);
});
mellow gazelleBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

azure rover
#

create a theme and add this css

td.fi-ta-actions-cell,
td.fi-ta-selection-cell {
    @apply align-top;
}
.fi-ta-selection-cell > div {
    @apply py-5;
}