bd1c5c28ee
Merge commit 'a9f62a15cdc6528b804d214325488ba52c619313' as 'externals/fmt'
8 lines
162 B
Text
8 lines
162 B
Text
// Text overflow
|
|
// Requires inline-block or block for proper styling
|
|
|
|
.text-overflow() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|