Created
November 15, 2018 19:46
-
-
Save jeserodz/97c33f40d9be2c6b66d652c864397f33 to your computer and use it in GitHub Desktop.
Bootstrap Responsive Breakpoints as JSON
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
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