Files
black-dashboard-flask/apps/static/assets/scss/black-dashboard/bootstrap/mixins/_text-truncate.scss
App Generator 40a4fe974f Codebase Update
2023-06-06 11:03:31 +03:00

9 lines
168 B
SCSS

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