diff options
| author | Mark Otto <[email protected]> | 2011-10-22 15:50:17 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-22 15:50:17 -0700 |
| commit | 2e09ffe3832106fab60dc01cc3159c13029bdf68 (patch) | |
| tree | 650eff3be8414c680e938b8d7d5361451b98081a /bootstrap.css | |
| parent | 523e02f7df3bb706654b43cf604e61c9396212e1 (diff) | |
| parent | 2c0a60a777d85c9223abf245be56308b8c62804c (diff) | |
| download | bootstrap-2e09ffe3832106fab60dc01cc3159c13029bdf68.tar.xz bootstrap-2e09ffe3832106fab60dc01cc3159c13029bdf68.zip | |
Merge pull request #461 from tinyfly/responsive-row-fix
Undo negative margin on .row for responsive layouts
Diffstat (limited to 'bootstrap.css')
| -rw-r--r-- | bootstrap.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bootstrap.css b/bootstrap.css index 0f6d58ae0..7eef72fee 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: Mon Oct 17 23:44:56 PDT 2011 + * Date: Fri Oct 21 11:54:44 CDT 2011 */ /* Reset.less * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). @@ -2268,6 +2268,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { width: auto; padding: 0 10px; } + .row { + margin-left: 0; + } [class*="span"] { float: none; display: block; @@ -2299,6 +2302,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { width: auto; padding: 0 10px; } + .row { + margin-left: 0; + } [class*="span"] { float: none; display: block; |
