From 5c48a9148e8f1bfbed6770d61d22f010a9ccc723 Mon Sep 17 00:00:00 2001 From: Sainan Date: Sat, 29 Jun 2024 13:49:58 +0200 Subject: [PATCH] fix(webui): add scrollbar to cards if needed (#429) --- static/webui/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/webui/style.css b/static/webui/style.css index 341588cd2..a78037e02 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; +}