diff options
| author | Mark Otto <[email protected]> | 2012-01-07 00:29:36 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-07 00:29:36 -0800 |
| commit | 0cb2866409c674f834f8e0f4e204c3c3331abbcd (patch) | |
| tree | 22d035d91578f6c07599308c6b0f48160c0fad29 | |
| parent | 36e7660383a7639f5d538efb7dc0f349e285b42d (diff) | |
| download | bootstrap-0cb2866409c674f834f8e0f4e204c3c3331abbcd.tar.xz bootstrap-0cb2866409c674f834f8e0f4e204c3c3331abbcd.zip | |
fix reponsive 1200+ media query to resolve mismatched gutters and negative margins on the row
| -rw-r--r-- | bootstrap.css | 7 | ||||
| -rw-r--r-- | lib/responsive.less | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/bootstrap.css b/bootstrap.css index f10d872ac..eb338c038 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Sat Jan 7 00:24:46 PST 2012 + * Date: Sat Jan 7 00:29:11 PST 2012 */ html, body { margin: 0; @@ -3160,6 +3160,9 @@ a.thumbnail:hover { .container { width: @siteWidth; } + .row { + margin-left: @gridGutterWidth * -1; + } [class*="span"] { margin-left: @gridGutterWidth; } @@ -3193,4 +3196,4 @@ a.thumbnail:hover { .offset12 { .offset(12); } } -*/ +*/
\ No newline at end of file diff --git a/lib/responsive.less b/lib/responsive.less index fe2b7cd49..4cef89180 100644 --- a/lib/responsive.less +++ b/lib/responsive.less @@ -205,6 +205,9 @@ .container { width: @siteWidth; } + .row { + margin-left: @gridGutterWidth * -1; + } [class*="span"] { margin-left: @gridGutterWidth; } @@ -238,4 +241,4 @@ .offset12 { .offset(12); } } -*/ +*/
\ No newline at end of file |
