mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-07-01 17:56:57 -04:00
8 lines
168 B
SCSS
Executable file
8 lines
168 B
SCSS
Executable file
// Text truncate
|
|
// Requires inline-block or block for proper styling
|
|
|
|
@mixin text-truncate() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|