We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Media query can be placed into a variable and reused on multiple places.
Sample input:
@singleQuery: ~"(max-width: 500px)"; @media screen, @singleQuery { set { padding: 3 3 3 3; } }
compiles into:
@media screen, (max-width: 500px) { set { padding: 3 3 3 3; } }