From fd15e766814a3cd5ebe92476ec8861edb5cddbb4 Mon Sep 17 00:00:00 2001 From: Robin Scholtes Date: Sat, 3 Feb 2024 18:09:56 +1300 Subject: [PATCH] [#181] set initial Recipe and IO widths to 30 and 50 (from 40 and 40), as per the current width implementations on init --- src/web/App.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/App.mjs b/src/web/App.mjs index a3a4a8ca..410cac25 100755 --- a/src/web/App.mjs +++ b/src/web/App.mjs @@ -269,7 +269,7 @@ class App { const isMobileView = this.isMobileView(); this.columnSplitter = Split(["#operations", "#recipe", "#IO"], { - sizes: isMobileView ? [100, 100, 100] : [20, 40, 40], + sizes: isMobileView ? [100, 100, 100] : [20, 30, 50], minSize: [360, 330, 310], gutterSize: isMobileView ? 0 : 4, expandToMin: true,