Last active
August 23, 2016 20:55
-
-
Save gotbahn/2a46a1a64649ac9589a1cad09ce2de79 to your computer and use it in GitHub Desktop.
Combine & handle Media Queries in Less
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo { | |
color: red; | |
} | |
@media all and (min-width: 768px) { | |
.foo { | |
color: green; | |
} | |
} | |
@media all and (min-width: 1024px) { | |
.foo { | |
color: blue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment