From 27c1669ed320506e25fcea3aa0624681c8db6623 Mon Sep 17 00:00:00 2001 From: Jottyfan Date: Sat, 7 Jun 2025 19:42:49 +0200 Subject: [PATCH] make scrolling work again --- src/main/resources/static/css/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css index 64096fd..d7ce9da 100644 --- a/src/main/resources/static/css/style.css +++ b/src/main/resources/static/css/style.css @@ -531,6 +531,11 @@ div { .thumbswipe { -webkit-overflow-scrolling: touch; max-height: 100px; - overflow-x: hidden; + overflow-x: scroll; overflow-y: hidden; -} \ No newline at end of file + scrollbar-width: none; +} + +.thumbswipe::-webkit-scrollbar { + display: none; +}