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

Merge pull request #9726 from twbs/calculate-it-son

un-hardcode @grid-gutter-width in @container-* LESS vars
This commit is contained in:
Mark Otto
2013-08-17 11:52:38 -07:00
+3 -3
View File
@@ -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));