MusicTopus/sass/list.scss

16 lines
246 B
SCSS
Raw Normal View History

2022-02-19 09:25:51 +01:00
.items {
span {
margin-right: 0.6rem;
&::after {
content: ",";
}
&:last-child {
&::after {
margin-right: 0;
content: "";
}
}
}
}