User31
You're correct, if I'm looking to specifically target a phone, like this:
.TagCategory-subTagList { padding-inline-start: 20px !important; }
@media @phone { .TagCategory-subTagList { padding-inline-start: 0px !important; } }
However, in this case, I'm targeting the element on everything, so there is no need to specifically target the phone.
.ParentCategory.TagCategory-alignEnd { display: none !important; }
@media @phone { .ParentCategory.TagCategory-alignEnd { display: none !important; } }
I could be wrong about this, but that is what I have gathered so far.