From d18525b5c7a5ebd8f851f769cd5f868236e111cd Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 27 Aug 2023 21:09:02 -0400 Subject: [PATCH] Increase min-width for popup (#1468) * Increase min-width for popup * Create short-lamps-cross.md --- .changeset/short-lamps-cross.md | 5 +++++ extension/src/window/index.tsx | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/short-lamps-cross.md diff --git a/.changeset/short-lamps-cross.md b/.changeset/short-lamps-cross.md new file mode 100644 index 00000000..05a64763 --- /dev/null +++ b/.changeset/short-lamps-cross.md @@ -0,0 +1,5 @@ +--- +'remotedev-redux-devtools-extension': patch +--- + +Increase min-width of popup 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%';