Files
blog/user/plugins/problems/scss/mixins/_text.scss

7 lines
114 B
SCSS
Raw Normal View History

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