add composer column to song/album table (#1559)

This commit is contained in:
jeffvli
2026-01-17 02:16:56 -08:00
parent aec2f85165
commit ac944c43bb
7 changed files with 136 additions and 1 deletions
@@ -0,0 +1,16 @@
.composers-container {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
color: var(--theme-colors-foreground-muted);
user-select: none;
}
.composers-container.compact {
-webkit-line-clamp: 1;
}
.composers-container.large {
-webkit-line-clamp: 3;
}