From 4adf540045144222c9fca77f807707e4584e625b Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 27 Aug 2023 20:41:02 -0400 Subject: [PATCH] Increase min-width for popup --- extension/src/window/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/extension/src/window/index.tsx b/extension/src/window/index.tsx index 94b1a686..b28424a1 100644 --- a/extension/src/window/index.tsx +++ b/extension/src/window/index.tsx @@ -35,4 +35,5 @@ chrome.runtime.getBackgroundPage((window) => { ); }); +if (position === '#popup') document.body.style.minWidth = '760px'; if (position !== '#popup') document.body.style.minHeight = '100%';