grav/plugins/problems/scss/mixins/_text.scss

7 lines
114 B
SCSS
Raw Normal View History

2023-01-09 02:00:36 +01:00
// Text Ellipsis
@mixin text-ellipsis() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}