Index: static/scss/_grid.scss |
=================================================================== |
--- a/static/scss/_grid.scss |
+++ b/static/scss/_grid.scss |
@@ -21,17 +21,17 @@ |
/** |
* - .row contains one or more .column(s) |
* - .row clears .column(s) |
* - .row negates the left & right padding of it's left-most & right-most |
* .column(s) while preserving consistent padding between .column(s) |
*/ |
.row |
{ |
- margin: 0px (-$small-space); |
+ @include margin-breakpoints($row-spacing, 'x', -1); |
} |
.row:after |
{ |
display: block; |
clear: both; |
content: ""; |
} |
@@ -41,17 +41,17 @@ |
* - Modifier classes are applied to .column to change it's width |
* - Modifier classes behave differently on different device widths |
*/ |
.column |
{ |
position: relative; |
width: 100%; |
min-height: 1px; |
- padding: 0px $small-space; |
+ @include padding-breakpoints($column-spacing, 'x'); |
} |
/* - .column(s) within .row .reverse appear in reverse order |
* - .column(s) within [dir=rtl] appear in reverse order respectively |
*/ |
.column, |
[dir="rtl"] .reverse .column |