mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-19 10:09:14 +00:00
9 lines
168 B
SCSS
Executable file
9 lines
168 B
SCSS
Executable file
// Text overflow
|
|
// Requires inline-block or block for proper styling
|
|
|
|
@mixin text-overflow() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|