fix: limit tags length

This commit is contained in:
Tienson Qin
2024-08-30 08:52:16 +08:00
parent dbd6f7d780
commit fad0f832ab
2 changed files with 15 additions and 6 deletions

View File

@@ -863,3 +863,13 @@ html.is-mac {
text-overflow: ellipsis;
}
}
.block-tags {
@apply flex flex-row flex-wrap items-center gap-1;
max-width: 256px;
}
.block-tag span {
@apply h-6 whitespace-nowrap overflow-hidden;
max-width: 160px;
text-overflow: ellipsis;
}