Skip to content

Instantly share code, notes, and snippets.

@jeserodz
Created November 15, 2018 19:46
Show Gist options
  • Save jeserodz/97c33f40d9be2c6b66d652c864397f33 to your computer and use it in GitHub Desktop.
Save jeserodz/97c33f40d9be2c6b66d652c864397f33 to your computer and use it in GitHub Desktop.
Bootstrap Responsive Breakpoints as JSON
export default {
xs: {
min: 0,
max: 575,
},
sm: {
min: 576,
max: 767,
},
md: {
min: 768,
max: 991,
},
lg: {
min: 992,
max: 1199,
},
xl: {
min: 1200,
max: Infinity,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment