From efb7ee0c28d79e94606bf58adc1f223a6a15437d Mon Sep 17 00:00:00 2001 From: whitlocktech Date: Fri, 12 Jun 2026 23:55:24 -0500 Subject: [PATCH] scroll bug fix --- src-tauri/tauri.conf.json | 4 ---- src/components/config/ConfigScreen.module.css | 3 ++- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1501949..53bd9e0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -31,10 +31,6 @@ "externalBin": [ "binaries/asw-sidecar" ], - "resources": { - "../UO artwork": "UO artwork", - "../UO Gumps": "UO Gumps" - }, "icon": [ "icons/32x32.png", "icons/128x128.png", diff --git a/src/components/config/ConfigScreen.module.css b/src/components/config/ConfigScreen.module.css index fc7fa1c..1ad445c 100644 --- a/src/components/config/ConfigScreen.module.css +++ b/src/components/config/ConfigScreen.module.css @@ -1,10 +1,11 @@ .screen { flex: 1; display: flex; - align-items: center; + align-items: flex-start; justify-content: center; background: var(--bg-base); padding: 40px; + overflow-y: auto; } .card { -- 2.49.1