Skip to content

Instantly share code, notes, and snippets.

@fredbegin11
Last active October 19, 2020 17:48
Show Gist options
  • Select an option

  • Save fredbegin11/e3df16b9fa0973753bc052bed6d749bf to your computer and use it in GitHub Desktop.

Select an option

Save fredbegin11/e3df16b9fa0973753bc052bed6d749bf to your computer and use it in GitHub Desktop.
@mixin small-phone {
@media (max-width: 375px) {
@content;
}
}
@mixin phone {
@media (max-width: 767px) {
@content;
}
}
@mixin mobile {
@media (max-width: 1023px) {
@content;
}
}
@mixin laptop {
@media (min-width: 1024px) {
@content;
}
}
@mixin desktop {
@media (min-width: 1441px) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment