1
0
mirror of https://github.com/tabler/tabler.git synced 2026-01-11 15:10:08 +04:00
Files
tabler/site/styles/_lists.scss
2023-07-18 00:13:56 +02:00

31 lines
386 B
SCSS

.list-inline-dots {
display: inline-flex;
flex-wrap: wrap;
> * {
+ * {
&:before {
content: '·';
color: $color-muted;
margin-right: .5rem;
}
}
&:not(:last-child) {
margin-right: .5rem;
}
}
}
.list-unstyled {
list-style: none;
margin: 0;
padding: 0;
}
.list-separated {
>* + * {
margin-top: $gap-2;
}
}