mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-15 13:00:25 +02:00
15 lines
239 B
CSS
15 lines
239 B
CSS
.text-container {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.text-container.compact {
|
|
-webkit-line-clamp: 1;
|
|
}
|
|
|
|
.text-container.large {
|
|
-webkit-line-clamp: 3;
|
|
}
|