I have a media query in LESS: @media (max-width: 1079px) { ... }
. Basically I want to create a variable in LESS in which I can just say @media (*LESS variable goes here*) { ... }
in my stylesheets. How can I interpolate the string max-width: 1079px
into a LESS variable to make this happen?
Thanks