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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79@use '../shared.scss';
@use '@scss/common' as *;
.component {
position: relative;
display: inline-flex;
flex-direction: column-reverse;
gap: 0.5rem;
}
.fullWidth {
width: 100%;
}
.inputWrap {
position: relative;
}
.input {
@include shared.formInput;
}
.showError {
.input {
border-left: 2px solid var(--theme-error-500);
}
}
.description {
margin: 0;
}
.tooltipButton {
width: 100%;
height: 100%;
}
.type--hidden {
display: none;
}
.iconWrapper {
position: absolute;
top: 50%;
right: 1rem;
transform: translate3d(0, -50%, 0);
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.icon {
display: flex;
align-items: center;
justify-content: center;
height: 0.5rem;
width: 0.5rem;
}
.suffix {
@include small;
& {
display: flex;
color: var(--theme-elevation-500);
}
}
:global([data-theme='light']) {
.input {
background: var(--theme-elevation-50);
&:disabled {
background: var(--theme-elevation-100);
}
}
}