Last active
August 16, 2023 06:59
-
-
Save akolinski/29403de9ae9efbf56c8b5d5f3329e2ef 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 since this is the default in Bootstrap | |
// Very small devices (tablets, 480px and up) | |
@media (min-width: $screen-xs-min) { | |
} | |
// Small devices (tablets, 768px and up) | |
@media (min-width: $screen-sm-min) { | |
} | |
// Medium devices (desktops, 992px and up) | |
@media (min-width: $screen-md-min) { | |
} | |
// Large devices (large desktops, 1200px and up) | |
@media (min-width: $screen-lg-min) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment