From 1784a30e019b77a118bb821a4dac0c60176cada3 Mon Sep 17 00:00:00 2001 From: Jack McNicol Date: Fri, 8 Jul 2016 01:48:48 +0930 Subject: [PATCH] address issue of row state classes having to be nested --- src/_Grid.sass | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/_Grid.sass b/src/_Grid.sass index a5b7d73..0c1c5f5 100644 --- a/src/_Grid.sass +++ b/src/_Grid.sass @@ -21,10 +21,10 @@ padding: 0 width: 100% - .row-wrap + &.row-wrap flex-wrap: wrap - .row-no-padding + &.row-no-padding padding: 0 &> .column @@ -36,19 +36,19 @@ // Vertically Align Columns // .row-* vertically aligns every .col in the .row - .row-top + &.row-top align-items: flex-start - .row-bottom + &.row-bottom align-items: flex-end - .row-center + &.row-center align-items: center - .row-stretch + &.row-stretch align-items: stretch - .row-baseline + &.row-baseline align-items: baseline .column