18 lines
265 B
SCSS
18 lines
265 B
SCSS
|
.truncate {
|
||
|
text-overflow: unset;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: baseline;
|
||
|
|
||
|
.first {
|
||
|
flex-grow: 0;
|
||
|
flex-shrink: 1;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.last-four {
|
||
|
flex-shrink: 0;
|
||
|
flex-grow: 0;
|
||
|
}
|
||
|
}
|