mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00: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;
|
|
}
|