aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-27 12:40:02 -0800
committerMark Otto <[email protected]>2013-12-27 12:40:02 -0800
commit140d24c8fb884cc74d8253687e795e91f6a5c6b1 (patch)
treed38a77d99f3e4a612fcdfe9e34234bc003315d12
parent201088cb5f9ab4af062b62ac3a10a2e8f07a6ec5 (diff)
parentdd9c5fdb08a8445fc44117386ca3bead38b717a9 (diff)
downloadbootstrap-140d24c8fb884cc74d8253687e795e91f6a5c6b1.tar.xz
bootstrap-140d24c8fb884cc74d8253687e795e91f6a5c6b1.zip
Merge pull request #12028 from moshevds/deprecated-screen-md
Small fix: I noticed the use of a deprecated variable.
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 5bcaeabbc..31992feca 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -706,7 +706,7 @@
}
}
.make-md-column-push(@columns) {
- @media (min-width: @screen-md) {
+ @media (min-width: @screen-md-min) {
left: percentage((@columns / @grid-columns));
}
}