Josh
Implementing a replacement of existing admin panel with Filament (6+ year old active SaaS project)
This is looking pretty nice, however, I don't like the top bar being a solid color and the borders around the top bar look a bit inconsistent now as well. let's override that with a dark gray color with some transparency to let the the image come through, and apply some blur to the backdrop.
We had to override two classes, since the topbar and the sidebar have separate header classes. We also need to use
!
to make our classes more important than the default styles in the case where those styles are already being defined.70 replies
Implementing a replacement of existing admin panel with Filament (6+ year old active SaaS project)
I think we can really step this up a notch by adding a custom background. To do this we're going to need to extend the default theme's css with our own custom theme. Let's do that with
php artisan make:filament-theme
. Now we have a theme.css
file that we can use to override some styles.70 replies