From ef7cfa08ee770c0c1a4c96920c3a98ab232d5170 Mon Sep 17 00:00:00 2001 From: dubcanada Date: Tue, 10 May 2016 14:01:31 -0300 Subject: [PATCH 1/2] Fixed issue with IE11 and flex:1 --- src/_Grid.sass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/_Grid.sass b/src/_Grid.sass index a5b7d73..76fa5df 100644 --- a/src/_Grid.sass +++ b/src/_Grid.sass @@ -53,7 +53,8 @@ .column display: block - flex: 1 + // IE 11 required specifying the flex-basis otherwise it breaks mobile + flex: 1 1 auto margin-left: 0 max-width: 100% width: 100% From 2323bb69f106c2779ece7234c8be6c412ef60e32 Mon Sep 17 00:00:00 2001 From: Jarkko Tuunanen Date: Tue, 27 Dec 2016 22:43:13 +0200 Subject: [PATCH 2/2] Remove table border spacing #141 --- src/_Table.sass | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_Table.sass b/src/_Table.sass index 7939901..c27ec39 100644 --- a/src/_Table.sass +++ b/src/_Table.sass @@ -3,6 +3,7 @@ // –––––––––––––––––––––––––––––––––––––––––––––––––– table + border-spacing: 0 width: 100% td,