diff options
| author | Mark Otto <[email protected]> | 2013-12-15 10:38:54 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-15 10:38:54 -0800 |
| commit | 82c52a7e9d35d42df3ef3bc88bffdf5ba2bae98c (patch) | |
| tree | 6c7480ecaafdfd9967ee3f844487c95f0adb6113 | |
| parent | 168469f545a189fa51e5d36546e7972f4748ec3f (diff) | |
| download | bootstrap-82c52a7e9d35d42df3ef3bc88bffdf5ba2bae98c.tar.xz bootstrap-82c52a7e9d35d42df3ef3bc88bffdf5ba2bae98c.zip | |
Fixes #11801: use correct variables for grid containers
| -rw-r--r-- | less/grid.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/grid.less b/less/grid.less index dfae6999b..88957f42a 100644 --- a/less/grid.less +++ b/less/grid.less @@ -10,10 +10,10 @@ .container { .container-fixed(); - @media (min-width: @screen-sm) { + @media (min-width: @screen-sm-min) { width: @container-sm; } - @media (min-width: @screen-md) { + @media (min-width: @screen-md-min) { width: @container-md; } @media (min-width: @screen-lg-min) { |
