1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/components/ui/TruncateLines/TruncateLines.module.scss
Peter Bengtsson 67dc3ac7cd remove need for styled-jsx construct (#28749)
* remove need for styled-jsx construct

* remove line that might not be needed
2022-06-28 11:53:35 +00:00

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;
}