0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-23 00:12:37 +00:00
salesagility_SuiteCRM/themes/SuiteP/css/bootstrap/mixins/text-overflow.scss
2017-12-06 13:59:36 +00: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;
}