From 871dea080ad2b0b8ed584bc8da66c78bcd3d81ea Mon Sep 17 00:00:00 2001 From: Sainan Date: Sat, 29 Jun 2024 11:34:58 +0200 Subject: [PATCH] fix(webui): add scrollbar to cards if needed some users might otherwise be unable to use certain actions --- static/webui/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/webui/style.css b/static/webui/style.css index 341588cd..a78037e0 100644 --- a/static/webui/style.css +++ b/static/webui/style.css @@ -27,3 +27,8 @@ td.text-end > a > svg { margin-left: 0.5em; margin-bottom: 4px; /* to centre the icon */ } + +/* if an item name is super long, ensure it doesn't prevent the user from using actions */ +.card-body { + overflow: auto; +} -- 2.47.2