AdminLTE icon indicating copy to clipboard operation
AdminLTE copied to clipboard

Minimal custom scss being ignored?

Open cryo75 opened this issue 3 years ago • 0 comments

I created a custom scss file as an example to see if the variable overrides are working:

$body-bg: #F000FF;
$main-bg: #0000FF;
$dark-main-bg: #FF0000;
$sidebar-dark-bg: #00FF00;
$enable-dark-mode: false;

@import '../_adminlte/node_modules/bootstrap/scss/bootstrap';
@import '../_adminlte/build/scss/adminlte.raw';

The css file gets generated and it's being linked in the main html file, where I have for example:

<aside class="main-sidebar sidebar-dark-primary elevation-4">
</aside>

However, no colors are being changed. The overrides I'm doing are just not taking affect. What am I missing?

cryo75 avatar Jul 28 '22 07:07 cryo75