mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-23 19:06:32 +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;
|
|
}
|