Can I customize css in `app.css` or am I required to create a custom theme?
Just wondering what the
app.css
file is even for if not customizations?Solution:Jump to solution
If you are using panels then you need a custom theme. App.css could still be used for non filament pages. Think like a CMS for managing content and a frontend that is a consumer facing website.
If you are using the packages stand alone then you would use app.css....
5 Replies
Solution
If you are using panels then you need a custom theme. App.css could still be used for non filament pages. Think like a CMS for managing content and a frontend that is a consumer facing website.
If you are using the packages stand alone then you would use app.css.
Great, thanks!
Which
app.css
is this?
I came here because I'm wondering where to put my custom styles. I'm looking at public/css/filament/filament/app.css
. It doesn't look like a place where I want to put my custom CSS. Is there a way to register a separate stylesheet?It's in the
theme.css
file.
You have to create a custom theme to modify styles: https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-themeThank you. That makes sense