Files
kupshop/admin/static/bootstrap/scss/mixins/_text-overflow.scss
2025-08-02 16:30:27 +02:00

9 lines
171 B
SCSS

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