Skip to content

Instantly share code, notes, and snippets.

@jtomasek
Created September 20, 2013 08:53
Show Gist options
  • Save jtomasek/6634915 to your computer and use it in GitHub Desktop.
Save jtomasek/6634915 to your computer and use it in GitHub Desktop.
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