blob: 2fe0cf08af52be3b65d305efbead0825a2087ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.posts-list {
padding: 0;
}
.posts-list-item {
list-style: none;
&:not(:last-child) {
border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
padding: 0.4em 0;
}
.posts-list-item-description {
display: block;
font-size: 0.8em;
}
|