Overriding default dashboard styling
Hello, I'm not really sure how to go about this really;
I want to override certain styles on the dashboard itself(
/admin
), for example the header & navbar background color.
What is the easiest way without re-compiling Vue or CSS assets?
Cheers!2 Replies
Hi @Hans-Peter you can inject css directly in a blade view by pushing in the
extra_css
stack
so what you can do is override the main-listing/form/dashboard.blade.php layout files from twill under views/vendor/twill/layouts
to add your css. Or you can override the head.blade.php
file under views/vendor/twill/partials
Thanks for the quick reply!