summaryrefslogtreecommitdiff
path: root/ui/styles/textarea.css
blob: b4d1a93e53aa0efdf557d9fd4e3b64b2dc2862d5 (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
/* Message input */
.create-message form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.create-message textarea {
  padding: 0.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: 1px solid var(--colour-input-border);
  z-index: 1;  /* Just to make the focus-active border go over the following button. */
  flex-grow: 1;
  background-color: var(--colour-input-bg);
  color: var(--colour-input-text);
  font-family: "FiraCode";
}

.create-message button {
  border-radius: 0 0.5rem 0.5rem 0;
  border: 1px solid var(--colour-input-border);
  background-color: var(--colour-input-bg);
  color: var(--colour-input-text);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}