From 559e016c42c50c4bca286e33d48c1d6d80b9c9ba Mon Sep 17 00:00:00 2001 From: Justin Hsu Date: Mon, 26 Oct 2015 23:53:02 +0900 Subject: [PATCH] Turn off some flexbox stuff. Seems to cause problems with chrome, not sure why div heights not taking children into account. --- css/style.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/style.scss b/css/style.scss index c12d49a..8501cb8 100644 --- a/css/style.scss +++ b/css/style.scss @@ -107,7 +107,7 @@ body { @include flexed; @include flex-direction(column); @include justify-content(space-around); - @include flex(1 1); + // @include flex(1 1); @include order(2); } @@ -124,12 +124,12 @@ body { } .picture { - @include flex(1 1); + // @include flex(1 1); padding: $text-pad; } .contact { - @include flex(1 1); + // @include flex(1 1); padding: $text-pad; h3 { @@ -139,7 +139,7 @@ body { // About cell ~ 2x sidebar in normal mode .about { - @include flex(2 1); + // @include flex(2 1); padding: $text-pad; }