Files
unity/resources/sass/admin/components/bootstrap4/mixins/_text-truncate.scss
T
glovetleong 8fa80e4a1a setup
2021-06-17 09:53:04 +08:00

9 lines
168 B
SCSS
Vendored

// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}