I imported another stylesheet using @import in the main style sheet file. I would like the changes I have made in the @import stylesheet to override th
@import
This solution working perfect for me.
Make copy of your main.css and rename it to style.css. In main.css delete all and past :
@import url("style.css"); @import url("style-override.css");
Thats all.