14 lines
228 B
SCSS
14 lines
228 B
SCSS
|
.read-more-container {
|
||
|
@include media-breakpoint-down(md) {
|
||
|
&:not(.is-expanded) {
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
|
||
|
> * {
|
||
|
display: inline;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|