2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

more media query mixins

This commit is contained in:
Mark Otto
2014-09-17 21:56:27 -07:00
parent 44f948ad53
commit 47bef3c6a0
6 changed files with 20 additions and 21 deletions
+6 -6
View File
@@ -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);
}
});