From 804dfd7a3864a5be9b25f32222e1351d263dc051 Mon Sep 17 00:00:00 2001 From: Robin van Baalen Date: Fri, 4 Apr 2014 09:12:28 -0700 Subject: [PATCH 1/2] Added support for align-items: stretch in grid Now you can do: ```
Very
Much
Text
Short
Shrt
``` All columns will have equal heights. Especially useful when 'simulating' tables with the grid system. --- scss/_grid.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scss/_grid.scss b/scss/_grid.scss index de2b18c5fa..761b7de7b5 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -1,4 +1,3 @@ - /** * Grid * -------------------------------------------------- @@ -39,6 +38,9 @@ .row-center { @include align-items(center); } +.row-stretch { + @include align-items(stretch); +} /* .col-* vertically aligns an individual .col */ .col-top { From e0e7a83b076cc5c098c2b76348546bd716e5fddd Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 4 Apr 2014 13:59:13 -0500 Subject: [PATCH 2/2] feat(grid): Added .row-baseline and .row-stretch --- scss/_grid.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scss/_grid.scss b/scss/_grid.scss index 761b7de7b5..7624119ca6 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -41,6 +41,9 @@ .row-stretch { @include align-items(stretch); } +.row-baseline { + @include align-items(baseline); +} /* .col-* vertically aligns an individual .col */ .col-top {