From 13c8a10414d1c4c7a5a265235f61186faed97ca6 Mon Sep 17 00:00:00 2001 From: Mohan <167054270+mohan-bee@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:49:36 +0530 Subject: [PATCH] updated the side scroll in hints --- frontend/src/components/window/StatusBar.svelte | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/window/StatusBar.svelte b/frontend/src/components/window/StatusBar.svelte index 75003e6f7e..4f110b0e1a 100644 --- a/frontend/src/components/window/StatusBar.svelte +++ b/frontend/src/components/window/StatusBar.svelte @@ -40,7 +40,12 @@ justify-content: space-between; .hints { - overflow: hidden; + overflow-x: auto; + scrollbar-width: none; + + &::-webkit-scrollbar { + display: none; + } --row-height: 24px; margin: 0 4px; max-width: calc(100% - 2 * 4px);