diff options
| author | Mark Otto <[email protected]> | 2014-09-17 21:56:27 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-09-17 21:56:27 -0700 |
| commit | 47bef3c6a03cd30e06edfa2737ce6c7ab3dbe44c (patch) | |
| tree | 63aabea01d484d269e96f50aeb2c3f0a37ee1ac0 /less/_grid.less | |
| parent | 44f948ad53c3d0c31306cf52ca1c6f8f9b7f601e (diff) | |
| download | bootstrap-47bef3c6a03cd30e06edfa2737ce6c7ab3dbe44c.tar.xz bootstrap-47bef3c6a03cd30e06edfa2737ce6c7ab3dbe44c.zip | |
more media query mixins
Diffstat (limited to 'less/_grid.less')
| -rw-r--r-- | less/_grid.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/less/_grid.less b/less/_grid.less index 9957a44af..28dbb9f97 100644 --- a/less/_grid.less +++ b/less/_grid.less @@ -61,24 +61,24 @@ // Columns, offsets, pushes, and pulls for the small device range, from phones // to tablets. -@media (min-width: @screen-sm-min) { +.media-sm({ .make-grid(sm); -} +}); // Medium grid // // Columns, offsets, pushes, and pulls for the desktop device range. -@media (min-width: @screen-md-min) { +.media-md({ .make-grid(md); -} +}); // Large grid // // Columns, offsets, pushes, and pulls for the large desktop device range. -@media (min-width: @screen-lg-min) { +.media-lg({ .make-grid(lg); -} +}); |
