Skip to content

Instantly share code, notes, and snippets.

@WitkowskiMichau
Created March 9, 2018 13:59
Show Gist options
  • Save WitkowskiMichau/b1fb610706d0fc0f27961cdc36c25df0 to your computer and use it in GitHub Desktop.
Save WitkowskiMichau/b1fb610706d0fc0f27961cdc36c25df0 to your computer and use it in GitHub Desktop.
media-query.less
@desktop: ~"only screen and (min-width: 960px) and (max-width: 1199px)";
@tablet: ~"only screen and (min-width: 720px) and (max-width: 959px)";
@media @desktop {
footer {
width: 940px;
}
}
@media @tablet {
footer {
width: 768px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment