fix(webui): add scrollbar to cards if needed

some users might otherwise be unable to use certain actions
This commit is contained in:
Sainan 2024-06-29 11:34:58 +02:00
parent 7cfef6294b
commit 871dea080a

View File

@ -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;
}