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!
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
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:
Without seeing what exactly you changed "from" and "to" in the files you mentioned, it's hard to make more specific recommendations.
.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.