test/scss/grid.scss in susy-1.0.rc.4 vs test/scss/grid.scss in susy-1.0
- old
+ new
@@ -16,10 +16,14 @@
.span-columns {
@include span-columns(6 omega,12);
}
+.span-columns-with-padding {
+ @include span-columns(6 omega,12,1 * $gutter-width 2 * $gutter-width);
+}
+
.reset-columns {
@include reset-columns;
}
.omega {
@@ -35,5 +39,21 @@
}
.remove-nth-omega {
@include remove-nth-omega;
}
+
+/* ---------------------------------------------------------------------------
+/* Border-Box Sizing */
+
+@include border-box-sizing;
+
+.container {
+ @include container;
+}
+
+.span-columns-with-padding {
+ @include span-columns(6 omega,12,1 * $gutter-width 2 * $gutter-width);
+}
+
+// Reset $border-box-sizing so it doesn't have other effects
+$border-box-sizing: false;