From bd256c9639e38c9e5c27ae816a741792ae3ef0af Mon Sep 17 00:00:00 2001 From: epiqueras Date: Mon, 10 Feb 2020 15:31:51 -0500 Subject: [PATCH] Block Editor: Fix overflowing `LinkControl`. --- packages/block-editor/src/components/link-control/style.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/block-editor/src/components/link-control/style.scss b/packages/block-editor/src/components/link-control/style.scss index 959e1f30c1126..5ca56bd7db73f 100644 --- a/packages/block-editor/src/components/link-control/style.scss +++ b/packages/block-editor/src/components/link-control/style.scss @@ -2,7 +2,8 @@ $block-editor-link-control-number-of-actions: 1; .block-editor-link-control { position: relative; - min-width: $modal-min-width; + width: 90vw; + max-width: $modal-min-width; } // LinkControl popover. @@ -147,7 +148,6 @@ $block-editor-link-control-number-of-actions: 1; text-overflow: ellipsis; max-width: 230px; overflow: hidden; - white-space: nowrap; } .block-editor-link-control__search-item-title {