Files
feishin/src/renderer/components/item-list/item-table-list/columns/artists-column.module.css
T
2025-11-29 19:30:50 -08:00

25 lines
424 B
CSS

.group {
gap: var(--theme-spacing-sm) var(--theme-spacing-xs);
overflow: hidden;
}
.group a {
cursor: pointer;
}
.artists-container {
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
color: var(--theme-colors-foreground-muted);
}
.artists-container.compact {
-webkit-line-clamp: 1;
}
.artists-container.large {
-webkit-line-clamp: 3;
}