I have integrated AdminLTE into my project, and within an html page I have the following code:
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<aside>
Everything seems to be working fine.
To customize the styling for multiple tenants, I created a custom scss file where I imported scss files and defined the following styles:
@import '_adminlte/node_modules/bootstrap/scss/bootstrap';
@import '_adminlte/build/scss/adminlte.raw';
.tenant-sidebar {
@extend .main-sidebar, .sidebar-dark-primary, .elevation-4
}
After that, I updated my aside tag to:
<aside class="tenant-sidebar">
<aside>
However, it appears that only the main-sidebar and elevation-4 classes are being applied. The sidebar-dark-primary class is not getting applied. Any idea why this is occurring?