[#181] set initial Recipe and IO widths to 30 and 50 (from 40 and 40), as per the current width implementations on init

This commit is contained in:
Robin Scholtes 2024-02-03 18:09:56 +13:00
parent a7bb81a78e
commit fd15e76681

View file

@ -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,