czydojade/resources/styles/_fabourites.scss
2020-01-26 15:15:36 +01:00

33 lines
468 B
SCSS

@include media-breakpoint-up('sm') {
.favourite-add-form {
width: 300px;
}
}
.favourite__stops {
display: block;
white-space: nowrap;
padding-left: 0;
font-size: $small-font-size;
overflow-x: hidden;
text-overflow: ellipsis;
&:last-child {
margin-bottom: 0;
}
}
.favourite__stop {
display: inline-flex;
&::after {
content: ", ";
margin-right: .5em;
}
&:last-child::after {
content: none;
margin-right: 0;
}
}