Created
September 20, 2013 08:53
-
-
Save jtomasek/6634915 to your computer and use it in GitHub Desktop.
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
in test/less/media.less | |
@variable: 768px; | |
@media (min-width: @variable) { | |
aside { float: left; } | |
} | |
in test/css/media.css | |
@media (min-width: 768px) { | |
aside { | |
float: left; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment