From dd9c5fdb08a8445fc44117386ca3bead38b717a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B4she=20van=20der=20Sterre?= Date: Fri, 27 Dec 2013 21:27:51 +0100 Subject: [PATCH] Small fix: I noticed the use of a deprecated variable. This seems to be the only occurrence. --- less/mixins.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/mixins.less b/less/mixins.less index 5bcaeabbca..31992feca3 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)); } }