diff --git a/packages/editor/src/components/header/style.scss b/packages/editor/src/components/header/style.scss index 3040362a7bd575..427297161ed8b9 100644 --- a/packages/editor/src/components/header/style.scss +++ b/packages/editor/src/components/header/style.scss @@ -43,6 +43,11 @@ flex-grow: 1; display: flex; justify-content: center; + // Flex items will, by default, refuse to shrink below a minimum + // intrinsic width. In order to shrink this flexbox item, and + // subsequently truncate child text, we set an explicit min-width. + // See https://dev.w3.org/csswg/css-flexbox/#min-size-auto + min-width: 0; &.is-collapsed { display: none;