19 lines
295 B
SCSS
19 lines
295 B
SCSS
|
.linkable-item-seemore {
|
||
|
grid-column: 2;
|
||
|
grid-row: 1;
|
||
|
align-self: baseline;
|
||
|
}
|
||
|
|
||
|
.overflow-ellipsis {
|
||
|
box-sizing: border-box;
|
||
|
&.is-closed {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.has-font-weight-normal {
|
||
|
font-weight: $font-weight-normal;
|
||
|
}
|