Wrap long titles in bookmark details modal (#1150)

This commit is contained in:
Sascha Ißbrücker
2025-08-10 10:05:46 +02:00
committed by GitHub
parent de38e56b3f
commit 6d9a694756
2 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
/* Common styles */
.bookmark-details {
.title {
word-break: break-word;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 5;
overflow: hidden;
}
& .weblinks {
display: flex;
flex-direction: column;