Last active
June 8, 2021 09:28
-
-
Save brendonexus/33b2d8bb9f20649437a671bfa44b4918 to your computer and use it in GitHub Desktop.
Bootstrap 5 sizes in Bootstrap 4
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
$grid-columns: 12; | |
$grid-gutter-width: 24px; | |
$grid-breakpoints: ( | |
xs: 0, | |
sm: 576px, | |
md: 768px, | |
lg: 992px, | |
xl: 1200px, | |
xxl: 1400px | |
) !default; | |
$container-max-widths: ( | |
sm: 540px, | |
md: 720px, | |
lg: 960px, | |
xl: 1140px, | |
xxl: 1320px | |
) !default; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment