Fix descriptions overflowing field (#1925)

This commit is contained in:
Matthias Metelka 2022-06-23 05:32:07 +02:00 committed by GitHub
parent a8e34ce419
commit e6f158e445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -253,5 +253,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
/* Adopts same size as the content editable element */
width: 100%;
height: 100%;
/* Keep text on single line and hide overflow */
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
}
</style>