zotero/scss/abstracts/_utilities.scss
Tom Najdek 13cc393840
fx-compat: long tag fixer (#2649)
* Manual tag splitting from tag selector
* Only apply split to the tag in current library
* Preserve tag type
2023-03-16 21:20:11 -04:00

9 lines
No EOL
197 B
SCSS

//
// Utilities
// --------------------------------------------------
@mixin text-truncate($text-overflow: ellipsis) {
white-space: nowrap;
overflow: hidden;
text-overflow: $text-overflow;
}