We have an app with some CSS coming from QuickGrid and some from CSSes behind Blazor components. These are bundled into a "projectName.Components/frontendWeb".bundle.scp.css which imports QuickGrid.
App is started from a frontend project I will call "projectName.frontendWeb". This one has its own bundled CSS that starts with imports as below:
@import '_content/"projectName.Components"/"projectName.Components".bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';
Our problem is that we want the QuickGrid to be imported first, so that some parts can be overwritten by our own CSSes.Can we control the order of imports in bundled CSS?Both "projectName.frontendWeb" and "projectName.Components" refer to QuickGrid. I removed all references to QuickGrid from frontendWeb but import of QuickGrid still came after import of bundled CSS for "projectName.Components".
I also tried to change the order of package/project references in .csproj without success.
Any help in how to control order of our imports or hint on what could have gone wrong?