From ea3223e0b0228e0e4f4be7612223c880c07c9b2c Mon Sep 17 00:00:00 2001 From: wukko Date: Fri, 30 May 2025 13:19:26 +0600 Subject: [PATCH] web/ProcessingQueueItem: fix unintentional overflow this resulted the queue to be scrollable horizontally when multiple items are present. caused by the button reveal animation. only affected desktop layouts --- web/src/components/queue/ProcessingQueueItem.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/queue/ProcessingQueueItem.svelte b/web/src/components/queue/ProcessingQueueItem.svelte index 5ab4e03d..98918f73 100644 --- a/web/src/components/queue/ProcessingQueueItem.svelte +++ b/web/src/components/queue/ProcessingQueueItem.svelte @@ -262,6 +262,7 @@ justify-content: flex-start; align-items: center; position: relative; + overflow: hidden; } .processing-item {