From d222c6208d34a04e9ec22057077f7db80ead4fc4 Mon Sep 17 00:00:00 2001 From: Chad Davis Date: Tue, 8 Jun 2021 12:44:36 -0500 Subject: [PATCH] Increase width to fix scrolling issue The Port text is long enough to require the user to scroll. By increasing the width from 370px to 450px, this fixes the problem. --- src/components/Chunk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Chunk.js b/src/components/Chunk.js index 01a144b..f7dc897 100644 --- a/src/components/Chunk.js +++ b/src/components/Chunk.js @@ -32,7 +32,7 @@ const Popover = styled.div` --offset: 5rem; top: initial; - width: 370px; + width: 450px; ${({ orientation }) => { switch (orientation) {