Is there a way for SASS to combine duplicate CSS selectors from multiple files into a single output file?
In my current setup, I have the same CSS selector present in separate SASS partials files that are all included in a master file. For example:
File1:
.mySelector { color: #ffffff; }
File2:
.mySelector { line-height: 1; }
Master file:
@import 'partials/File1';
@import 'partials/File2';
Instead of combining these duplicate selectors into one in the final CSS output file, SASS creates two separate instances. Is there a setting or workaround that can help merge identical selectors during compilation?