fix(webui): add scrollbar to cards if needed (#429)

This commit is contained in:
Sainan 2024-06-29 13:49:58 +02:00 committed by GitHub
parent afc8de57e1
commit 5c48a9148e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,3 +27,8 @@ td.text-end > a > svg {
margin-left: 0.5em; margin-left: 0.5em;
margin-bottom: 4px; /* to centre the icon */ 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;
}