From fd783211643dbf7f158292097910cf00c8edfcf6 Mon Sep 17 00:00:00 2001 From: Paul Goodrich Date: Fri, 17 Jul 2026 10:55:00 -0400 Subject: [PATCH] Update panel.js --- nx2/utils/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx2/utils/panel.js b/nx2/utils/panel.js index 33ab9f1be..db68d8108 100644 --- a/nx2/utils/panel.js +++ b/nx2/utils/panel.js @@ -1,7 +1,7 @@ import { getMetadata } from '../scripts/nx.js'; const PANEL_WIDTH_MIN = 120; -const PANEL_WIDTH_MAX = () => Math.min(1600, window.innerWidth * 0.4); +const PANEL_WIDTH_MAX = () => Math.min(1600, window.innerWidth * 0.85); function parsePanelWidth(aside) { const w = aside.dataset.width?.trim();