I'm using AdminLTE as my base for styling. There is a class called .sidebar-dark-primary.
In a page I have:
<aside class="main-sidebar sidebar-dark-primary elevation-4">
</aside>
Now I have a separate CSS file that is loaded after all other files and only if a condition is met.
I need to change the page to be something like:
<aside class="main-sidebar sidebar-custom elevation-4">
</aside>
And sidebar-custom comes from the separate file.
How do I inherit sidebar-custom from sidebar-dark-primary in one file or to sidebar-light-primary in another file?