I want to include the new SASS in the old code base. Avoiding new styles from leaking - given the new styles already written.
eg.
.box width: 100%
to
.sandbox .box width: 100%
It will be by many rules.
So, the new html fragments in the old code base will have
<div class="sandbox"> <div class="box"> </div>
Or - is there an easier way to avoid CSS code leakage?
source share