From: Chris Rebert Date: Sat, 17 Aug 2013 07:02:17 +0000 (-0700) Subject: un-hardcode @grid-gutter-width in @container-* LESS vars X-Git-Tag: v3.0.0~78^2~11^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e12d6208b6912aefe7ead384e460006988ebdbec;p=thirdparty%2Fbootstrap.git un-hardcode @grid-gutter-width in @container-* LESS vars --- diff --git a/less/variables.less b/less/variables.less index ddfeae7279..c3eeaaebc7 100644 --- a/less/variables.less +++ b/less/variables.less @@ -600,10 +600,10 @@ // -------------------------------------------------- // Small screen / tablet -@container-tablet: 750px; // 720px + 30px left/right padding +@container-tablet: ((720px + @grid-gutter-width)); // Medium screen / desktop -@container-desktop: 970px; // 940px + 30px left/right padding +@container-desktop: ((940px + @grid-gutter-width)); // Large screen / wide desktop -@container-large-desktop: 1170px; // 1140px + 30px left/right padding +@container-large-desktop: ((1140px + @grid-gutter-width));