From 510c63e7b0e4624257df1ca9a87631906933b57c Mon Sep 17 00:00:00 2001 From: Christopher Hight Date: Fri, 21 Aug 2026 11:41:08 -0700 Subject: [PATCH] Update tabs in widget library now scroll and look nice --- .../components/dashboard/SettingsButton.jsx | 53 +++++++++++++++++-- 1 file changed, 48 insertions(+), 5 deletions(-) diff --git a/client/src/components/dashboard/SettingsButton.jsx b/client/src/components/dashboard/SettingsButton.jsx index 13a9577..21d08f1 100644 --- a/client/src/components/dashboard/SettingsButton.jsx +++ b/client/src/components/dashboard/SettingsButton.jsx @@ -168,12 +168,55 @@ export function SettingsButton() { - - + + { + if (e.currentTarget) { + e.currentTarget.scrollLeft += e.deltaY; + } + }} + > {categories.map(cat => ( - {cat} + + {cat} + ))}