Merge pull request #100 from jackmcpickle/row-state-classes

address issue of row state classes having to be nested
This commit is contained in:
CJ Patoilo 2016-07-08 08:26:25 -03:00 committed by GitHub
commit 672a3e1dba

View File

@ -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