aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less9
1 files changed, 6 insertions, 3 deletions
diff --git a/less/mixins.less b/less/mixins.less
index b44197bcc..3f25b1b73 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -407,11 +407,14 @@
// Creates a wrapper for a series of columns
.make-row() {
- // Negative margin the row out to align the content of columns
- margin-left: (@grid-gutter-width / -2);
- margin-right: (@grid-gutter-width / -2);
// Then clear the floated columns
.clearfix();
+
+ // Negative margin nested rows out to align the content of columns
+ .row {
+ margin-left: (@grid-gutter-width / -2);
+ margin-right: (@grid-gutter-width / -2);
+ }
}
// Generate the columns
.make-column(@columns) {