Files
ticketbeast/resources/assets/less/lists.less
2017-05-19 09:42:39 -04:00

22 lines
372 B
Plaintext

.bullet-list {
list-style-type: disc;
padding-left: 2.5rem;
> li {
margin-bottom: @spacer-2;
&:last-child {
margin-bottom: 0;
}
}
}
.numbered-list {
list-style-type: decimal;
padding-left: 2rem;
> li {
margin-bottom: @spacer-2;
&:last-child {
margin-bottom: 0;
}
}
}