i have few dynamic classes dynamicClass1,dynamicClass2,dynamicClass3, ... ,dynamicClassN
I want to apply a common css property to all of them in my .scss file.
Approach I followed -
dynamicClass {
&* {
display: grid;
}
}
This isn't working. What's the correct way to do this?