Skip to content

Commit 0b83a8c

Browse files
committed
textarea styles
1 parent 3f8af58 commit 0b83a8c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lib/form/textarea.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
:root {
2+
--textarea-min-height: 18rem;
3+
--textarea-min-width: 56rem;
4+
}
5+
16
.ui.flexible.form.field {
27
height: auto;
3-
line-height: normal;
8+
line-height: var(--document-line-height);
49

510
padding: var(--gutter-small);
611

@@ -18,6 +23,7 @@
1823
}
1924

2025
textarea.ui.flexible.form.field {
21-
min-height: 18rem;
22-
line-height: normal;
26+
min-height: var(--textarea-min-height);
27+
min-width: var(--textarea-min-width);
28+
line-height: var(--document-line-height);
2329
}

0 commit comments

Comments
 (0)