mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 12:30:06 +02:00
25 lines
424 B
CSS
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;
|
|
}
|