Hey guys,
I am trying to overwrite the app style build with SCSS with an external file.
I am loading the global.scss style file in my layout and load the customers css afterwards.
---
import "@/styles/global.scss";
---
<link
rel="stylesheet"
href="styles/customer.css"
/>
After building the app the customers style is not applied because it is overwritten by global styles.
How can I load the customers css after the global style?