summaryrefslogtreecommitdiffstats
path: root/assets/sass/modules/_archive.scss
blob: 88b299318fcce7da38168ad6451c3105e077bb68 (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
.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;
    white-space: nowrap;
    overflow-x: scroll;

    &::-webkit-scrollbar {
        display: none; // WebKit
    }

    scrollbar-width: none; // Firefox
    -ms-overflow-style: none; // Microsoft
}