Turn off some flexbox stuff.

Seems to cause problems with chrome, not sure why div heights not taking
children into account.
This commit is contained in:
Justin Hsu 2015-10-26 23:53:02 +09:00
parent b07e4adce6
commit 559e016c42
1 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ body {
@include flexed; @include flexed;
@include flex-direction(column); @include flex-direction(column);
@include justify-content(space-around); @include justify-content(space-around);
@include flex(1 1); // @include flex(1 1);
@include order(2); @include order(2);
} }
@ -124,12 +124,12 @@ body {
} }
.picture { .picture {
@include flex(1 1); // @include flex(1 1);
padding: $text-pad; padding: $text-pad;
} }
.contact { .contact {
@include flex(1 1); // @include flex(1 1);
padding: $text-pad; padding: $text-pad;
h3 { h3 {
@ -139,7 +139,7 @@ body {
// About cell ~ 2x sidebar in normal mode // About cell ~ 2x sidebar in normal mode
.about { .about {
@include flex(2 1); // @include flex(2 1);
padding: $text-pad; padding: $text-pad;
} }