dyno-bot/Dyno-web-blitz-redesign/sass/mixins/truncate.scss

6 lines
110 B
SCSS
Raw Permalink Normal View History

2020-09-12 20:08:48 +02:00
@mixin truncate($width) {
width: $width;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}