diff options
| author | Mark Otto <[email protected]> | 2013-09-03 15:49:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-03 15:49:03 -0700 |
| commit | 0a78e7907d4082452e2bd41a0adf87ab3807675d (patch) | |
| tree | 3af231d0b1f5f70ce745aad69bcae16c295770a9 /less | |
| parent | 5eead87ed73b61352126339e86a96ba7166e2754 (diff) | |
| download | bootstrap-0a78e7907d4082452e2bd41a0adf87ab3807675d.tar.xz bootstrap-0a78e7907d4082452e2bd41a0adf87ab3807675d.zip | |
fixes #10406: Update grid to use width on .container instead of max-width as IE8 improperly computes width
Diffstat (limited to 'less')
| -rw-r--r-- | less/grid.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/grid.less b/less/grid.less index 100d51fa2..a1ec1b298 100644 --- a/less/grid.less +++ b/less/grid.less @@ -116,7 +116,7 @@ @media (min-width: @screen-sm) { .container { - max-width: @container-sm; + width: @container-sm; } .col-sm-1, @@ -194,7 +194,7 @@ @media (min-width: @screen-md) { .container { - max-width: @container-md; + width: @container-md; } .col-md-1, .col-md-2, @@ -274,7 +274,7 @@ @media (min-width: @screen-lg-min) { .container { - max-width: @container-lg; + width: @container-lg; } .col-lg-1, |
