Files

9 lines
168 B
SCSS
Raw Permalink Normal View History

2026-02-14 02:36:56 -05:00
// Text overflow
// Requires inline-block or block for proper styling
@mixin text-overflow() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}