Skip to content

Commit 7f03ade

Browse files
committed
Merge pull request cjcenizal#5 from RoberMac/master
Fix: flex-grow default value is 0 and flex-shrink default value is 1
2 parents ac3799a + 9b5c57a commit 7f03ade

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,11 +568,11 @@
568568
*
569569
* We'll also set flex-grow to 1 so that it
570570
* will expand to fill its container. (The
571-
* default value is 1.)
571+
* default value is 0.)
572572
*
573573
* We'll set flex-shrink to 1 so that the element
574574
* will shrink as its container gets smaller.
575-
* (The default value is 0.)
575+
* (The default value is 1.)
576576
*
577577
* Last, we set flex-basis to 0 so that its
578578
* size is solely determined by the size of

src/styles/card-group.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
*
2020
* We'll also set flex-grow to 1 so that it
2121
* will expand to fill its container. (The
22-
* default value is 1.)
22+
* default value is 0.)
2323
*
2424
* We'll set flex-shrink to 1 so that the element
2525
* will shrink as its container gets smaller.
26-
* (The default value is 0.)
26+
* (The default value is 1.)
2727
*
2828
* Last, we set flex-basis to 0 so that its
2929
* size is solely determined by the size of

0 commit comments

Comments
 (0)