We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When customizing bootstrap (e.g. http://getbootstrap.com/customize/?id=7880081) and setting @screen-md-min = 1280px @screen-lg-min = 1900px @container-md = ((1220px + @grid-gutter-width)) @container-lg = ((1860px + @grid-gutter-width))
it will generate the default @screen-md-min 992px instead of 1280px bootstrap.css (line 700)
@media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) {// WRONG .container { width: 1250px; } } @media (min-width: 1900px) { .container { width: 1890px; } }
The text was updated successfully, but these errors were encountered:
82c52a7
(less) Fixes twbs#11801: use correct variables for grid containers
664b1c7
6412a7e
No branches or pull requests
When customizing bootstrap (e.g. http://getbootstrap.com/customize/?id=7880081) and setting
@screen-md-min = 1280px
@screen-lg-min = 1900px
@container-md = ((1220px + @grid-gutter-width))
@container-lg = ((1860px + @grid-gutter-width))
it will generate the default @screen-md-min 992px instead of 1280px bootstrap.css (line 700)
The text was updated successfully, but these errors were encountered: