blob: 26025f5a9c1e1cba30c6147a7486abc148d38869 (
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
31
32
33
34
35
36
37
|
@import "./variables";
@import "./mixins";
#post-container {
max-width: $content-width;
width: 100%;
.post {
padding-bottom: 0;
.content {
margin-top: $inner-gap / 2;
word-wrap: break-word;
}
.comment {
.sub-card {
max-width: calc(100% - #{$pfp-width} - #{$inner-gap});
}
}
}
}
#new-post {
width: 100%;
}
#no-posts {
span {
display: block;
}
.no-posts-title {
font-size: 1.4em;
font-weight: bold;
}
}
|