aboutsummaryrefslogtreecommitdiff
path: root/src/web/components/comments/Comments.css
blob: 402e4a2058e61bc19c4c30bc36890b82e929567c (plain)
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
.container {
    width: 100%;
    position: relative;

    /*TODO*/
    display: none;

    justify-content: center;
    padding: 1em 1em 0em 0em;
    overflow: auto;

    color: var(--black-98);
}

.card {
    padding: 1em;
}

.originalPost {

}
.originalPost > h1 {
    font-size: 1.8em;
}

@media (min-width: 80em) {
    .container {
        display: flex;
    }
}