From 9b5c57a4d2b507edfe5e16d5526d258a5628b5ad Mon Sep 17 00:00:00 2001 From: RoberMac Date: Sat, 23 Apr 2016 10:33:31 +0800 Subject: [PATCH] Fix: flex-grow default value is 0 and flex-shrink default value is 1 --- dist/styles.css | 4 ++-- src/styles/card-group.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/styles.css b/dist/styles.css index b00da20..5a2bf7e 100644 --- a/dist/styles.css +++ b/dist/styles.css @@ -568,11 +568,11 @@ * * We'll also set flex-grow to 1 so that it * will expand to fill its container. (The - * default value is 1.) + * default value is 0.) * * We'll set flex-shrink to 1 so that the element * will shrink as its container gets smaller. - * (The default value is 0.) + * (The default value is 1.) * * Last, we set flex-basis to 0 so that its * size is solely determined by the size of diff --git a/src/styles/card-group.css b/src/styles/card-group.css index 45eabf0..8278e2d 100644 --- a/src/styles/card-group.css +++ b/src/styles/card-group.css @@ -19,11 +19,11 @@ * * We'll also set flex-grow to 1 so that it * will expand to fill its container. (The - * default value is 1.) + * default value is 0.) * * We'll set flex-shrink to 1 so that the element * will shrink as its container gets smaller. - * (The default value is 0.) + * (The default value is 1.) * * Last, we set flex-basis to 0 so that its * size is solely determined by the size of