]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
un-hardcode @grid-gutter-width in @container-* LESS vars 9726/head
authorChris Rebert <github@rebertia.com>
Sat, 17 Aug 2013 07:02:17 +0000 (00:02 -0700)
committerChris Rebert <github@rebertia.com>
Sat, 17 Aug 2013 07:02:17 +0000 (00:02 -0700)
less/variables.less

index ddfeae7279f2356d104f3b88bdd1ffa7458fd271..c3eeaaebc732ea75a8a79011f0c9a5a316952ca0 100644 (file)
 // --------------------------------------------------
 
 // 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));