1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00
Files
IW4M-Admin/Webfront/Content/bootstrap/mixins/_text-truncate.scss
2018-02-21 19:29:23 -06: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;
}