Last active
June 17, 2019 08:13
-
-
Save CreativePoweredGeek/732a2156419651ab498ebec3b897c613 to your computer and use it in GitHub Desktop.
Bootstrap 4 responsive breakpoints css file
This file contains hidden or 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
// These are the Bootstrap 4 Breakpoints per the Docs | |
// Google Fonts pre-load | |
// Extra small devices (portrait phones, less than 576px) | |
// No media query since this is the default in Bootstrap | |
// Small devices (landscape phones, 576px and up) | |
@media (min-width: 576px) { | |
} | |
// Medium devices (tablets, 768px and up) | |
@media (min-width: 768px) { | |
} | |
// Large devices (desktops, 992px and up) | |
@media (min-width: 992px) { | |
} | |
// Extra large devices (large desktops, 1200px and up) | |
@media (min-width: 1200px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is picked up basicly from the Bootstrap 4 site. I just adjusted it & got it ready for use and placed it here for convenience.