-
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
/**
* SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
* SPDX-License-Identifier: AGPL-3.0-only
*/
:where(.textarea) {
all: unset;
}
.textarea {
line-height: var(--line-height-1);
resize: none;
display: block;
width: 100%;
border: 1px solid var(--gray-6);
padding-bottom: var(--space-5);
white-space: pre;
background-color: var(--background-surface);
border-radius: var(--radius-2);
color: var(--gray-12);
}
@media (hover: hover) {
.textarea:focus-visible {
outline: 2px solid var(--focus-8);
outline-offset: -1px;
}
}