mempool/frontend/src/app/shared/components/truncate/truncate.component.scss

26 lines
402 B
SCSS
Raw Normal View History

2023-01-05 11:00:08 -06:00
.truncate {
text-overflow: unset;
display: flex;
flex-direction: row;
align-items: baseline;
.truncate-link {
display: flex;
flex-direction: row;
align-items: baseline;
flex-shrink: 1;
overflow: hidden;
}
2023-01-05 11:00:08 -06:00
.first {
flex-grow: 0;
flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.last-four {
flex-shrink: 0;
flex-grow: 0;
}
}