blob: 8a9a92b4d50c1d1c8843f25e7164be69e534fe82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
.post-archive {
&:not(:last-child) {
padding: 0.5rem 0;
}
&:last-child {
padding: 0.5rem 0 1rem 0;
}
}
.post-archive+.post-archive {
border-top: $spliter;
}
.post-title-archive {
font-size: $font-size-l2;
}
.post-meta-archive {
color: $color-mute;
padding: 0 0.1rem;
white-space: nowrap;
overflow-x: scroll;
time {
padding-right: 1rem;
}
span:not(:last-child) {
display: none;
}
&::-webkit-scrollbar {
display: none; // WebKit
}
scrollbar-width: none; // Firefox
-ms-overflow-style: none; // Microsoft
}
|