blob: 12741e62fac0441a66adbb2be46ee07b372e9288 (
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
|
/* TODO all of these rules are totally stupid */
.chat {
overflow: scroll;
background-color: var(--bg);
padding: 1em;
border-radius: 1em;
}
.chat .message {
margin: 0.2em;
}
.chat .author {
font-weight: bold;
}
.chat .content {
color: white;
}
.chat .messages {
height: calc(100% - 5em);
width: 100%;
overflow: scroll;
}
.chat .controls {
padding: 1em;
}
.chat input {
width: 100%;
}
|