I have 2 classes with different styles. Can I apply the styles from one class to another when within a media query with LESS?
So with the following CSS an element with a class of .one is blue but not bold. With a set media query I also want it to be bold and 2ems.
.one {
color: blue;
}
.two {
font-weight: bold;
font-size: 2em;
}