Skip to content

Instantly share code, notes, and snippets.

@zsitro
Created August 10, 2015 07:53
Show Gist options
  • Save zsitro/730842227fd8271b5bc3 to your computer and use it in GitHub Desktop.
Save zsitro/730842227fd8271b5bc3 to your computer and use it in GitHub Desktop.
LESS requirement
// -----------------------------
// BAD EXAMPLE:
// style.less
.gallery{
margin-top: 2rem;
}
// responsive.less
@media (max-width: 767px) {
.gallery{
margin-top: 0;
}
}
// -----------------------------
//GOOD EXAMPLE:
// style.less
.gallery{
margin-top: 2rem;
@media (max-width: 767px) {
margin-top: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment