From 590b42a574552e887fb41852df3158cbc8ae2e34 Mon Sep 17 00:00:00 2001 From: wukko Date: Fri, 31 Jan 2025 23:20:44 +0600 Subject: [PATCH] web/ProcessingQueueItem: fix processing-info overflow on mobile --- web/src/components/queue/ProcessingQueueItem.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/queue/ProcessingQueueItem.svelte b/web/src/components/queue/ProcessingQueueItem.svelte index e5b8ee4d..f3da210d 100644 --- a/web/src/components/queue/ProcessingQueueItem.svelte +++ b/web/src/components/queue/ProcessingQueueItem.svelte @@ -210,10 +210,10 @@ } } - /* TODO: fix this shitty workaround */ @media(hover: none) { .processing-info { - width: calc(100% - 80px); + overflow: hidden; + flex: 1; } }