Skip to content
New issue

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

wrong min-width generated #11801

Closed
miksh7 opened this issue Dec 9, 2013 · 0 comments
Closed

wrong min-width generated #11801

miksh7 opened this issue Dec 9, 2013 · 0 comments
Labels
Milestone

Comments

@miksh7
Copy link

miksh7 commented Dec 9, 2013

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;
  }
}
@mdo mdo closed this as completed in 82c52a7 Dec 15, 2013
@mdo mdo mentioned this issue Dec 15, 2013
stempler pushed a commit to stempler/bootstrap that referenced this issue Apr 11, 2014
stempler pushed a commit to stempler/bootstrap that referenced this issue Nov 4, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant