This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2017-03-02 09:46:58 +00:00
|
|
|
// Text truncate
|
|
|
|
// Requires inline-block or block for proper styling
|
|
|
|
|
|
|
|
@mixin text-truncate() {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-08-11 15:29:45 +00:00
|
|
|
}
|