handle title combined column on compact sizing

This commit is contained in:
jeffvli
2025-11-23 15:13:31 -08:00
parent af7e52295a
commit 56162b650c
2 changed files with 19 additions and 7 deletions
@@ -9,10 +9,14 @@
.text-container {
display: grid;
grid-template-rows: 1fr 1fr;
gap: 2px;
gap: var(--theme-spacing-xs);
min-width: 0;
}
.text-container.compact {
gap: 0;
}
.title {
overflow: hidden;
text-overflow: ellipsis;
@@ -23,7 +27,7 @@
display: block;
overflow: hidden;
text-overflow: ellipsis;
font-size: 0.875rem;
font-size: var(--theme-font-size-xs) !important;
color: var(--theme-colors-foreground-muted);
white-space: nowrap;
user-select: none;