diff options
| author | Mark Otto <[email protected]> | 2013-08-23 23:14:13 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-23 23:14:13 -0700 |
| commit | 99afaba2bfa5bcab8ee070477fba4b15db8d2af6 (patch) | |
| tree | 0044cbd39cc9927c8a48ca178b019c049520e2ca /less/grid.less | |
| parent | d5a27855459325290ace93538f5ceafb22dee27a (diff) | |
| parent | b86cd3bc3d866838127e7af15f665c70e7f50847 (diff) | |
| download | bootstrap-99afaba2bfa5bcab8ee070477fba4b15db8d2af6.tar.xz bootstrap-99afaba2bfa5bcab8ee070477fba4b15db8d2af6.zip | |
Merge pull request #10005 from twbs/deprecate-screen-device-vars
deprecate @screen-{phone,tablet,desktop} vars
Diffstat (limited to 'less/grid.less')
| -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 44e38994e..d3a3cf6bc 100644 --- a/less/grid.less +++ b/less/grid.less @@ -114,7 +114,7 @@ // Note that `.col-sm-12` doesn't get floated on purpose—there's no need since // it's full-width. -@media (min-width: @screen-tablet) { +@media (min-width: @screen-sm) { .container { max-width: @container-tablet; } @@ -192,7 +192,7 @@ // Note that `.col-md-12` doesn't get floated on purpose—there's no need since // it's full-width. -@media (min-width: @screen-desktop) { +@media (min-width: @screen-md) { .container { max-width: @container-desktop; } |
