Last active
August 16, 2023 06:57
-
-
Save akolinski/309407a5102cf7712c7c37c8bdbb667d 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
// No media query needed since this is the default in Bootstrap | |
// 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) { | |
} | |
// Extra large devices (large desktops, 1200px and up) | |
@include media-breakpoint-up(xl) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment