Files
unity/resources/sass/user/components/bootstrap4/mixins/_text-truncate.scss
T
glovetleong ad85832e75 user UI setup
user login UI
2021-07-06 11:54:00 +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;
}