mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
17 lines
326 B
CSS
17 lines
326 B
CSS
.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;
|
|
}
|