mirror of
https://github.com/tabler/tabler.git
synced 2026-01-11 15:10:08 +04:00
31 lines
386 B
SCSS
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;
|
|
}
|
|
}
|