dyno-bot/Dyno-web-blitz-redesign/sass/mixins/truncate.scss
2020-09-12 19:08:48 +01:00

6 lines
110 B
SCSS

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