blob: f23dfdeebd7868872e19f5fef2367fe152eeb739 (
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
|
@use "@styles/abstracts/functions" as fun;
.wrapper {
width: 100%;
}
.item {
margin: var(--spacing-xs) 0;
max-width: 45ch;
}
.label {
display: block;
font-size: var(--font-size-sm);
font-variant: small-caps;
font-weight: 600;
}
.field {
border: fun.convert-px(1) solid var(--color-border);
width: 100%;
padding: var(--spacing-2xs) var(--spacing-xs);
&:focus {
border-color: var(--color-primary);
}
}
.textarea {
min-height: fun.convert-px(200);
}
|