I'm got stuck in this,
if (condition) {
import("./style1.css");
} else {
import("./style2.css");
}
When trying to import styling conditionally. It works locally, But when you build the app then both styles combines. And gets conflicts.
Thank you !!!