I'm currently working on designing a dark theme for my ionic application by watching this tutorial. It's been effective for most of the classes, however, I've encountered some CSS classes that only respond to overrides in app.scss. If I try to override them in theme.dark.scss, they don't seem to change at all.
For instance, take the Ionic alert class .alert-md .alert-wrapper.
When I modify the background-color and color in app.scss, the changes are reflected. Yet, when I attempt the same modifications in theme.dark.scss, nothing happens.
Even adding !important in theme.dark.scss doesn't result in the background-color and color changes for that class.
Is there a way to successfully override the CSS in the theme.dark.scss file? Your help is much appreciated.