Modifying details
Hey everyone,
I have to add some modifications here and there, for which I didn't find a way to do in hooks
these are the files:
I don't seem to find a nice way to do that. is it possible to publish those files? Thank you!
Solution:Jump to solution
Since these are mostly CSS alterations, does the bare-bones way of css element targeting work? ie: add custom CSS styling to target a specific element. A basic example:
.fi-sidebar-header { background-color:red; }
You could add those to get compiled in via vite or add them into panel styling via the panels::styles.after
lifecycle hook.
Without seeing what exactly you changed "from" and "to" in the files you mentioned, it's hard to make more specific recommendations....3 Replies
Solution
Since these are mostly CSS alterations, does the bare-bones way of css element targeting work? ie: add custom CSS styling to target a specific element. A basic example:
.fi-sidebar-header { background-color:red; }
You could add those to get compiled in via vite or add them into panel styling via the panels::styles.after
lifecycle hook.
Without seeing what exactly you changed "from" and "to" in the files you mentioned, it's hard to make more specific recommendations.It's generally not ideal to publish vendor-specific files, as they may need to be changed between releases, and then you'd be missing those changes in your app unless you re-check every time you pull down updates.
you were right, today with a fresh brain I changed it, thank you