10
|
1 div[content] {
|
|
2 margin-bottom: 0;
|
|
3 display: flex;
|
|
4 height: calc(100vh - 32px);
|
|
5 margin-left: calc(3% - 8px);
|
|
6 margin-right: 0;
|
|
7 }
|
|
8
|
|
9 div[chats] {
|
|
10 width: 250px;
|
|
11 padding-right: 8px;
|
|
12 flex-shrink: 0;
|
|
13 overflow-y: auto;
|
|
14 }
|
|
15
|
|
16 div[chats] > div {
|
|
17 margin-top: 2px;
|
|
18 margin-bottom: 2px;
|
|
19 padding-top: 16px;
|
|
20 padding-bottom: 16px;
|
|
21 padding-left: 8px;
|
|
22 padding-right: 8px;
|
|
23 border-radius: 4px;
|
11
|
24 cursor: pointer;
|
10
|
25 }
|
|
26
|
|
27 div[chats] > div:hover,
|
|
28 div[chats] > div[selected] {
|
|
29 background-color: LightBlue;
|
|
30 }
|
|
31
|
|
32 div[posts] {
|
|
33 padding-left: 8px;
|
|
34 border-left: 1px solid;
|
|
35 width: 100%;
|
|
36 display: flex;
|
|
37 flex-direction: column;
|
|
38 }
|
|
39
|
|
40 div[posts] > * {
|
|
41 padding-right: 3vw;
|
|
42 }
|
|
43
|
|
44 div[top] {
|
|
45 display: flex;
|
|
46 justify-content: space-between;
|
|
47 align-items: center;
|
|
48 }
|
|
49
|
|
50 div[main] {
|
|
51 overflow-y: auto;
|
|
52 }
|
|
53
|
|
54 div[post] {
|
|
55 margin-top: 16px;
|
|
56 margin-bottom: 16px;
|
|
57 }
|
|
58
|
|
59 div[text] {
|
|
60 white-space-collapse: preserve;
|
|
61 }
|
|
62
|
|
63 div[input] {
|
|
64 padding-top: 1em;
|
|
65 padding-bottom: 1em;
|
|
66 display: flex;
|
|
67 gap: 8px;
|
|
68 align-items: flex-end;
|
|
69 }
|
|
70
|
|
71 div[input] textarea {
|
|
72 flex-grow: 1;
|
|
73 max-height: 150px;
|
|
74 resize: none;
|
|
75 }
|