From 7fb1af00f6ee72808b6d2af6536d0cd817c50e6d Mon Sep 17 00:00:00 2001 From: scottbedard Date: Wed, 12 Sep 2018 19:43:47 -0700 Subject: [PATCH] fix remaining shorthand cases for flexbug #6 see https://github.com/philipwalton/flexbugs#flexbug-6 --- src/generators/flexbox.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generators/flexbox.js b/src/generators/flexbox.js index 233208557..30827dc7e 100644 --- a/src/generators/flexbox.js +++ b/src/generators/flexbox.js @@ -93,10 +93,10 @@ export default function() { flex: '1 1 0%', }, 'flex-auto': { - flex: 'auto', + flex: '1 1 auto', }, 'flex-initial': { - flex: 'initial', + flex: '0 1 auto', }, 'flex-none': { flex: 'none',