Files
dogs/node_modules/bootstrap/scss/mixins/_text-truncate.scss
ChloeChen0423 7c63f2f07b 前端代码
2025-05-12 16:42:36 +09: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;
}