mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
8 lines
162 B
Text
Vendored
8 lines
162 B
Text
Vendored
// Text overflow
|
|
// Requires inline-block or block for proper styling
|
|
|
|
.text-overflow() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|