Colors bg-custom not work
I'm trying to add a Filament component within my Livewire, but the "Next" button gets some
bg-custom
classes, and then it becomes practically invisible. I don't understand why the "Back" button is normal and the other one is not. I use version 3.2 of Filament, Laravel 10, and Livewire 3.4 Replies
Hey @MauMau how do you have your form and wizzard code?
i have my code like this
Provisionally, I decided like this
->previousAction(
fn (Action $action) => $action
->icon('heroicon-o-arrow-left')
->link(),)
->nextAction(
fn (Action $action) => $action
->icon('heroicon-o-arrow-right')
->link(),
)