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%';