diff --git a/CHANGELOG.md b/CHANGELOG.md index 2819fa3e294..d6190e20a93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ **Bug fixes** - Adjust toast z-index to show over modals [(#296)](https://github.com/elastic/eui/pull/296) +- Fix nested `` collapse issue in IE [(#308)](https://github.com/elastic/eui/pull/308) # [`0.0.12`](https://github.com/elastic/eui/tree/v0.0.12) diff --git a/src/components/flex/_flex_group.scss b/src/components/flex/_flex_group.scss index 613ccaa8a33..ea9d9a51cfe 100644 --- a/src/components/flex/_flex_group.scss +++ b/src/components/flex/_flex_group.scss @@ -4,7 +4,7 @@ .euiFlexItem { flex-grow: 1; - flex-basis: 0; + flex-basis: 0%; } }