blob: 0c7deaa2b53ea137995299f2a82621e31714d0eb (
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
38
39
40
41
42
|
.timeline-item.timeline-post-edit {
padding-bottom: 0;
}
.timeline-post-edit .timeline-item-card {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
border-bottom: none;
}
.timeline-post-edit {
position: sticky;
bottom: 0;
z-index: 1;
}
.timeline-post-edit-image {
max-width: 100px;
max-height: 100px;
}
.timeline-markdown-post-edit-page {
overflow: scroll;
max-height: 300px;
}
.timeline-markdown-post-edit-image-container {
position: relative;
text-align: center;
margin-bottom: 1em;
}
.timeline-markdown-post-edit-image {
max-width: 100%;
max-height: 200px;
}
.timeline-markdown-post-edit-image-delete-button {
position: absolute;
right: 10px;
top: 2px;
}
|