Files
dominik/public/admin/view/stylesheet/sass/bootstrap/mixins/_text-overflow.scss
T
2026-05-30 09:27:58 +03:00

9 lines
168 B
SCSS

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