Last active
September 23, 2024 06:07
-
-
Save akolinski/9190b5702c27b0bcb394737f2f9950ff to your computer and use it in GitHub Desktop.
This file contains 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
// Small devices (landscape phones, 576px and up) | |
@include media-breakpoint-up(sm) { | |
} | |
// Medium devices (tablets, 768px and up) | |
@include media-breakpoint-up(md) { | |
} | |
// Large devices (desktops, 992px and up) | |
@include media-breakpoint-up(lg) { | |
} | |
// X-Large devices (large desktops, 1200px and up) | |
@include media-breakpoint-up(xl) { | |
} | |
// XX-Large devices (larger desktops, 1400px and up) | |
@include media-breakpoint-up(xxl) { | |
} | |
// Occasionally use media queries that go in the other direction | |
@include media-breakpoint-down(sm) {} | |
@include media-breakpoint-down(md) {} | |
@include media-breakpoint-down(lg) {} | |
@include media-breakpoint-down(xl) {} | |
@include media-breakpoint-down(xxl) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment