-
The documentation shows how to change the logo and name on the platform, to match the visual style of my brand. Is there a way to safely customize the sidebar color too? I've created a custom dashboard template by copying the
I also directly edited the original dashboard template in Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I've been using Orchid for a while now (for a customer project; a local school that needs a nice web app) and I really love it (thanks @tabuna for creating this 🙌🏻!) As far as I've seen, the "proper" way to change CSS is to:
If I've interpreted it correctly, the app.blade.php file (under vendor\orchid\platform\resources\views\app.blade.php states that it will run mix on the file "public\css\orchid\orchid.css" if it exists, else it uses orchid_mix to run its original orchid.css file.. For completeness sake, here's the code in app.blade.php file:
@tabuna could you verify that this is the proper (or an intended) way to customize styling for orchid based projects? |
Beta Was this translation helpful? Give feedback.
-
Is there any other information about how to correctly update CSS at this stage? Currently I've hade to link the CSS file and now I'm having to find and replace specific colours. I'm really hoping there's a better way to do this. |
Beta Was this translation helpful? Give feedback.
I've been using Orchid for a while now (for a customer project; a local school that needs a nice web app) and I really love it (thanks @tabuna for creating this 🙌🏻!)
As far as I've seen, the "proper" way to change CSS is to:
If I've interpreted it correctly, the app.blade.php file (under vendor\orchid\platform\resources\views\app.blade.php states that it will run mix on the file "public\css\orchid\orchid.css" if it exists, else it uses orchid_mix to run its original orchid.css file..
For completenes…