zotero/scss/abstracts/_utilities.scss

9 lines
197 B
SCSS
Raw Normal View History

2017-05-22 23:10:03 +00:00
//
// Utilities
// --------------------------------------------------
@mixin text-truncate($text-overflow: ellipsis) {
white-space: nowrap;
overflow: hidden;
text-overflow: $text-overflow;
}