diff options
| author | Chris Rebert <[email protected]> | 2013-08-17 00:02:17 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-08-17 00:02:17 -0700 |
| commit | e12d6208b6912aefe7ead384e460006988ebdbec (patch) | |
| tree | ca61ae8a37d67f2c7baf5697d02132e71679d579 /less/variables.less | |
| parent | 6a8cc191b595a13e5a3b69912dd929fbe16384f0 (diff) | |
| download | bootstrap-e12d6208b6912aefe7ead384e460006988ebdbec.tar.xz bootstrap-e12d6208b6912aefe7ead384e460006988ebdbec.zip | |
un-hardcode @grid-gutter-width in @container-* LESS vars
Diffstat (limited to 'less/variables.less')
| -rw-r--r-- | less/variables.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/variables.less b/less/variables.less index ddfeae727..c3eeaaebc 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)); |
