I'm using UI Library(Vuetify) and this is the code it has:
.sample[data-2] {
color:red;
}
and I want to overwrite all the elements having .sample classes like this:
.sample {
color:blue;
}
If i use '!important' then it surely works, but I want better solution to overwrite .sample[blabla] class.
I've tried .sample[*], .sample[] ... it didn't work