Skip to content

Instantly share code, notes, and snippets.

@CreativePoweredGeek
Last active June 17, 2019 08:13
Show Gist options
  • Save CreativePoweredGeek/732a2156419651ab498ebec3b897c613 to your computer and use it in GitHub Desktop.
Save CreativePoweredGeek/732a2156419651ab498ebec3b897c613 to your computer and use it in GitHub Desktop.
Bootstrap 4 responsive breakpoints css file
// 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) {
}
@CreativePoweredGeek
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment