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 /lib/responsive.less | |
| 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 'lib/responsive.less')
| -rw-r--r-- | lib/responsive.less | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/responsive.less b/lib/responsive.less index a1a33164f..1a84245a1 100644 --- a/lib/responsive.less +++ b/lib/responsive.less @@ -12,6 +12,12 @@ width: auto; padding: 0 10px; } + + // remove negative margin so we don't hang off the screen + .row { + margin-left: 0; + } + // Make all columns even [class*="span"] { float: none; @@ -57,6 +63,12 @@ width: auto; padding: 0 10px; } + + // remove negative margin so we don't hang off the screen + .row { + margin-left: 0; + } + // Make all columns even [class*="span"] { float: none; |
