8 lines
197 B
SCSS
8 lines
197 B
SCSS
.truncated {
|
|
// Note that `-webkit-line-clamp` gets set by the component JSX
|
|
// manually with a `style` attribute.
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|