Files
hasaddon/onedrive-backup/wwwroot/lib/bootstrap/scss/mixins/_text-truncate.scss
T
admins d70d81ebdf OneDrive Backup
OneDrive Backup
2023-07-28 22:36:06 +07: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;
}