mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-08 23:08:14 -07:00
8 lines
168 B
SCSS
8 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;
|
|
}
|