Commit 798363ed authored by Mark Otto's avatar Mark Otto
Browse files

fix left margin on .thumbnails for responsive <767

parent 10ff5f16
Showing with 7 additions and 5 deletions
+7 -5
No preview for this file type
...@@ -154,7 +154,8 @@ ...@@ -154,7 +154,8 @@
.row-fluid { .row-fluid {
width: 100%; width: 100%;
} }
.row { .row,
.thumbnails {
margin-left: 0; margin-left: 0;
} }
[class*="span"], [class*="span"],
...@@ -162,7 +163,7 @@ ...@@ -162,7 +163,7 @@
float: none; float: none;
display: block; display: block;
width: auto; width: auto;
margin: 0; margin-left: 0;
} }
input[class*="span"], input[class*="span"],
select[class*="span"], select[class*="span"],
......
...@@ -111,8 +111,9 @@ ...@@ -111,8 +111,9 @@
.row-fluid { .row-fluid {
width: 100%; width: 100%;
} }
// Undo negative margin on rows // Undo negative margin on rows and thumbnails
.row { .row,
.thumbnails {
margin-left: 0; margin-left: 0;
} }
// Make all grid-sized elements block level again // Make all grid-sized elements block level again
...@@ -121,7 +122,7 @@ ...@@ -121,7 +122,7 @@
float: none; float: none;
display: block; display: block;
width: auto; width: auto;
margin: 0; margin-left: 0;
} }
// FORM FIELDS // FORM FIELDS
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment