Skip to content

Commit

Permalink
Block Editor: Fix overflowing LinkControl.
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Feb 10, 2020
1 parent b05db0a commit bd256c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/block-editor/src/components/link-control/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit bd256c9

Please sign in to comment.