@itilite/lumina-ui 0.0.323 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Button.js +4 -4
- package/dist/Button.mjs +2 -2
- package/dist/Checkbox.js +4 -4
- package/dist/Checkbox.mjs +2 -2
- package/dist/Modal.d.mts +25 -0
- package/dist/Modal.d.ts +25 -0
- package/dist/Modal.js +267 -0
- package/dist/Modal.mjs +10 -0
- package/dist/Radio.d.mts +17 -0
- package/dist/Radio.d.ts +17 -0
- package/dist/Radio.js +122 -0
- package/dist/Radio.mjs +9 -0
- package/dist/Switch.d.mts +13 -0
- package/dist/Switch.d.ts +13 -0
- package/dist/Switch.js +102 -0
- package/dist/Switch.mjs +9 -0
- package/dist/Tooltip.d.mts +12 -0
- package/dist/Tooltip.d.ts +12 -0
- package/dist/Tooltip.js +97 -0
- package/dist/Tooltip.mjs +9 -0
- package/dist/chunk-2EBPXGRY.mjs +65 -0
- package/dist/{chunk-ME35H7QC.mjs → chunk-HISCHZ5H.mjs} +4 -4
- package/dist/chunk-MLCMZRUC.mjs +50 -0
- package/dist/chunk-MNARBWAJ.mjs +47 -0
- package/dist/chunk-N355RJGH.mjs +141 -0
- package/dist/{chunk-OMYHSSPQ.mjs → chunk-UQZNUEZE.mjs} +5 -5
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +279 -10
- package/dist/index.mjs +21 -5
- package/dist/styles.css +935 -536
- package/package.json +22 -7
- /package/dist/{chunk-FUJQIYOF.mjs → chunk-FWCSY2DS.mjs} +0 -0
package/dist/styles.css
CHANGED
|
@@ -1,36 +1,49 @@
|
|
|
1
|
-
/* src/
|
|
2
|
-
.
|
|
1
|
+
/* src/atom/Tooltip/Tooltip.module.scss */
|
|
2
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
|
|
3
|
+
background-color: white !important;
|
|
4
|
+
color: #111827;
|
|
5
|
+
border-radius: 0.5rem;
|
|
6
|
+
padding: 0.625rem;
|
|
7
|
+
--tw-text-opacity: 1;
|
|
8
|
+
color: rgb(33 40 55 / var(--tw-text-opacity, 1));
|
|
9
|
+
}
|
|
10
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
|
|
11
|
+
background-color: white !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/* src/atom/Button/Button.module.scss */
|
|
15
|
+
.Button-module__button___cLCyl {
|
|
3
16
|
display: flex;
|
|
4
17
|
align-items: center;
|
|
5
18
|
justify-content: center;
|
|
6
19
|
gap: 0.25rem;
|
|
7
20
|
border-radius: 0.5rem;
|
|
8
21
|
}
|
|
9
|
-
.Button-
|
|
22
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU {
|
|
10
23
|
height: 56px;
|
|
11
24
|
padding-left: 1rem;
|
|
12
25
|
padding-right: 1rem;
|
|
13
26
|
}
|
|
14
|
-
.Button-
|
|
27
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
|
|
15
28
|
width: 56px;
|
|
16
29
|
}
|
|
17
|
-
.Button-
|
|
30
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
|
|
18
31
|
height: 40px;
|
|
19
32
|
padding-left: 0.75rem;
|
|
20
33
|
padding-right: 0.75rem;
|
|
21
34
|
}
|
|
22
|
-
.Button-
|
|
35
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
|
|
23
36
|
width: 40px;
|
|
24
37
|
}
|
|
25
|
-
.Button-
|
|
38
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei {
|
|
26
39
|
height: 32px;
|
|
27
40
|
padding-left: 0.5rem;
|
|
28
41
|
padding-right: 0.5rem;
|
|
29
42
|
}
|
|
30
|
-
.Button-
|
|
43
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
|
|
31
44
|
width: 32px;
|
|
32
45
|
}
|
|
33
|
-
.Button-
|
|
46
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
|
|
34
47
|
--tw-bg-opacity: 1;
|
|
35
48
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
36
49
|
border-width: 1px;
|
|
@@ -39,31 +52,31 @@
|
|
|
39
52
|
border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
|
|
40
53
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
41
54
|
}
|
|
42
|
-
.Button-
|
|
55
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
|
|
43
56
|
--tw-bg-opacity: 1;
|
|
44
57
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
45
58
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
46
59
|
}
|
|
47
|
-
.Button-
|
|
60
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
|
|
48
61
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
49
62
|
}
|
|
50
|
-
.Button-
|
|
63
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
|
|
51
64
|
--tw-text-opacity: 1;
|
|
52
65
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
53
66
|
}
|
|
54
|
-
.Button-
|
|
67
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
|
|
55
68
|
--tw-text-opacity: 1;
|
|
56
69
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
57
70
|
}
|
|
58
|
-
.Button-
|
|
71
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
|
|
59
72
|
--tw-text-opacity: 1;
|
|
60
73
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
61
74
|
}
|
|
62
|
-
.Button-
|
|
75
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
|
|
63
76
|
--tw-text-opacity: 1;
|
|
64
77
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
65
78
|
}
|
|
66
|
-
.Button-
|
|
79
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
|
|
67
80
|
border-width: 1px;
|
|
68
81
|
border-style: solid;
|
|
69
82
|
--tw-bg-opacity: 1;
|
|
@@ -72,31 +85,31 @@
|
|
|
72
85
|
border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
|
|
73
86
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
74
87
|
}
|
|
75
|
-
.Button-
|
|
88
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
|
|
76
89
|
--tw-bg-opacity: 1;
|
|
77
90
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
78
91
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
79
92
|
}
|
|
80
|
-
.Button-
|
|
93
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
|
|
81
94
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
82
95
|
}
|
|
83
|
-
.Button-
|
|
96
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
|
|
84
97
|
--tw-text-opacity: 1;
|
|
85
98
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
86
99
|
}
|
|
87
|
-
.Button-
|
|
100
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
|
|
88
101
|
--tw-text-opacity: 1;
|
|
89
102
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
90
103
|
}
|
|
91
|
-
.Button-
|
|
104
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
|
|
92
105
|
--tw-text-opacity: 1;
|
|
93
106
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
94
107
|
}
|
|
95
|
-
.Button-
|
|
108
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
|
|
96
109
|
--tw-text-opacity: 1;
|
|
97
110
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
98
111
|
}
|
|
99
|
-
.Button-
|
|
112
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
|
|
100
113
|
border-width: 1px;
|
|
101
114
|
--tw-bg-opacity: 1;
|
|
102
115
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
@@ -105,31 +118,31 @@
|
|
|
105
118
|
border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
|
|
106
119
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
107
120
|
}
|
|
108
|
-
.Button-
|
|
121
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
|
|
109
122
|
--tw-bg-opacity: 1;
|
|
110
123
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
111
124
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
112
125
|
}
|
|
113
|
-
.Button-
|
|
126
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
|
|
114
127
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
115
128
|
}
|
|
116
|
-
.Button-
|
|
129
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
|
|
117
130
|
--tw-text-opacity: 1;
|
|
118
131
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
119
132
|
}
|
|
120
|
-
.Button-
|
|
133
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
|
|
121
134
|
--tw-text-opacity: 1;
|
|
122
135
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
123
136
|
}
|
|
124
|
-
.Button-
|
|
137
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
|
|
125
138
|
--tw-text-opacity: 1;
|
|
126
139
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
127
140
|
}
|
|
128
|
-
.Button-
|
|
141
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
|
|
129
142
|
--tw-text-opacity: 1;
|
|
130
143
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
131
144
|
}
|
|
132
|
-
.Button-
|
|
145
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
|
|
133
146
|
--tw-bg-opacity: 1;
|
|
134
147
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
135
148
|
border-width: 1px;
|
|
@@ -138,34 +151,34 @@
|
|
|
138
151
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
139
152
|
box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
|
|
140
153
|
}
|
|
141
|
-
.Button-
|
|
154
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
|
|
142
155
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
143
156
|
--tw-border-opacity: 1;
|
|
144
157
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
145
158
|
}
|
|
146
|
-
.Button-
|
|
159
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
|
|
147
160
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
148
161
|
}
|
|
149
|
-
.Button-
|
|
162
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
|
|
150
163
|
background-color: transparent;
|
|
151
164
|
border-width: 0px;
|
|
152
165
|
border-style: none;
|
|
153
166
|
box-shadow: none;
|
|
154
167
|
}
|
|
155
|
-
.Button-
|
|
168
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
|
|
156
169
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
157
170
|
border-style: none;
|
|
158
171
|
--tw-bg-opacity: 1;
|
|
159
172
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
160
173
|
}
|
|
161
|
-
.Button-
|
|
174
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
|
|
162
175
|
--tw-bg-opacity: 1;
|
|
163
176
|
background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
|
|
164
177
|
}
|
|
165
|
-
.Button-
|
|
178
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
|
|
166
179
|
outline: 2px solid rgba(236, 93, 37, 0.2);
|
|
167
180
|
}
|
|
168
|
-
.Button-
|
|
181
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
|
|
169
182
|
background-color: transparent;
|
|
170
183
|
padding: 0px;
|
|
171
184
|
border-width: 0px;
|
|
@@ -173,214 +186,198 @@
|
|
|
173
186
|
height: auto;
|
|
174
187
|
box-shadow: none;
|
|
175
188
|
}
|
|
176
|
-
.Button-
|
|
189
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
|
|
177
190
|
text-decoration: underline;
|
|
178
191
|
}
|
|
179
|
-
.Button-
|
|
192
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
|
|
180
193
|
box-shadow: none;
|
|
181
194
|
border-style: none;
|
|
182
195
|
background-color: transparent;
|
|
183
196
|
}
|
|
184
|
-
.Button-
|
|
197
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
|
|
185
198
|
background-color: transparent;
|
|
186
199
|
}
|
|
187
|
-
.Button-
|
|
200
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
|
|
188
201
|
outline: none;
|
|
189
202
|
}
|
|
190
203
|
|
|
191
|
-
/* src/
|
|
192
|
-
.
|
|
204
|
+
/* src/atom/Switch/Switch.module.scss */
|
|
205
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
|
|
206
|
+
height: 0.75rem;
|
|
207
|
+
min-width: 1.5rem
|
|
208
|
+
}
|
|
209
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
|
|
210
|
+
height: 0.5rem;
|
|
211
|
+
width: 0.5rem
|
|
212
|
+
}
|
|
213
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
|
|
214
|
+
--tw-bg-opacity: 1;
|
|
215
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
216
|
+
}
|
|
217
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
|
|
218
|
+
--tw-bg-opacity: 1;
|
|
219
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/* src/atom/Radio/Radio.module.scss */
|
|
223
|
+
.Radio-module__radio___1CPAk {
|
|
193
224
|
display: flex;
|
|
194
225
|
align-items: center;
|
|
195
226
|
}
|
|
196
|
-
.
|
|
227
|
+
.Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
|
|
197
228
|
height: 16px;
|
|
198
229
|
width: 16px;
|
|
199
230
|
}
|
|
200
|
-
.
|
|
231
|
+
.Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
|
|
201
232
|
height: 20px;
|
|
202
233
|
width: 20px;
|
|
203
234
|
}
|
|
204
|
-
.
|
|
205
|
-
inset-inline-start: 27%;
|
|
206
|
-
}
|
|
207
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_large___chR9U .ant-checkbox .ant-checkbox-inner {
|
|
235
|
+
.Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
|
|
208
236
|
height: 24px;
|
|
209
237
|
width: 24px;
|
|
210
238
|
}
|
|
211
|
-
.
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_checked___fhhpM .ant-checkbox-checked .ant-checkbox-inner {
|
|
215
|
-
border-color: #ec5d25;
|
|
216
|
-
background-color: #ec5d25;
|
|
239
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
|
|
240
|
+
border-color: #EC5D25;
|
|
241
|
+
background-color: #EC5D25;
|
|
217
242
|
}
|
|
218
|
-
.
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
--tw-bg-opacity: 1;
|
|
222
|
-
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
243
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
|
|
244
|
+
border-color: #B94710;
|
|
245
|
+
background-color: #B94710;
|
|
223
246
|
}
|
|
224
|
-
.
|
|
225
|
-
outline: 2px solid #
|
|
247
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
|
|
248
|
+
outline: 2px solid #0A65E7;
|
|
226
249
|
}
|
|
227
|
-
.
|
|
250
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
|
|
228
251
|
cursor: not-allowed;
|
|
229
252
|
}
|
|
230
|
-
.
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
background-color: #ec5d25;
|
|
253
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
|
|
254
|
+
border-color: #B6BAC3;
|
|
255
|
+
background-color: #B6BAC3;
|
|
234
256
|
}
|
|
235
|
-
.
|
|
236
|
-
|
|
257
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
|
|
258
|
+
transform: scale(0.375);
|
|
259
|
+
background-color: #FFFFFF;
|
|
237
260
|
}
|
|
238
|
-
.
|
|
239
|
-
border-color: #
|
|
261
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
|
|
262
|
+
border-color: #B6BAC3;
|
|
240
263
|
}
|
|
241
|
-
.
|
|
242
|
-
border-color: #
|
|
264
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
|
|
265
|
+
border-color: #6B7280;
|
|
243
266
|
}
|
|
244
|
-
.
|
|
245
|
-
outline: 2px solid #
|
|
267
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
|
|
268
|
+
outline: 2px solid #0A65E7;
|
|
246
269
|
}
|
|
247
|
-
.
|
|
270
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
|
|
248
271
|
cursor: not-allowed;
|
|
249
272
|
}
|
|
250
|
-
.
|
|
251
|
-
border-color: #
|
|
252
|
-
background-color: #
|
|
273
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
|
|
274
|
+
border-color: #B6BAC3;
|
|
275
|
+
background-color: #F9FAFB;
|
|
253
276
|
}
|
|
254
|
-
.
|
|
255
|
-
color: #
|
|
256
|
-
}
|
|
257
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__variant_normal___MbKJP {
|
|
258
|
-
color: #363e4f;
|
|
277
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
|
|
278
|
+
color: #363E4F;
|
|
259
279
|
font-weight: 400;
|
|
260
280
|
font-size: 0.875rem;
|
|
261
281
|
line-height: 20px;
|
|
262
282
|
}
|
|
263
|
-
.
|
|
264
|
-
color: #
|
|
283
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
|
|
284
|
+
color: #363E4F;
|
|
265
285
|
font-weight: 500;
|
|
266
286
|
font-size: 0.875rem;
|
|
267
287
|
line-height: 20px;
|
|
268
288
|
}
|
|
269
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__variant_indeterminate___-tnoD.Checkbox-module__disabled___xqtab .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
270
|
-
opacity: 0.5;
|
|
271
|
-
border-color: #ec5d25;
|
|
272
|
-
background-color: #ec5d25;
|
|
273
|
-
}
|
|
274
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__variant_indeterminate___-tnoD.Checkbox-module__disabled___xqtab .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
275
|
-
border-color: #ffffff;
|
|
276
|
-
}
|
|
277
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__variant_indeterminate___-tnoD .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
278
|
-
border-color: #ec5d25 !important;
|
|
279
|
-
background-color: #ec5d25 !important;
|
|
280
|
-
}
|
|
281
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__variant_indeterminate___-tnoD .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
282
|
-
inset-inline-start: 50%;
|
|
283
|
-
width: 60%;
|
|
284
|
-
height: 3px;
|
|
285
|
-
border-radius: 4px;
|
|
286
|
-
background: white;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* CSS Modules */
|
|
290
|
-
|
|
291
289
|
|
|
292
|
-
/*
|
|
293
|
-
|
|
294
|
-
.Checkbox-module__checkbox___D2qRJ {
|
|
290
|
+
/* src/atom/Checkbox/Checkbox.module.scss */
|
|
291
|
+
.Checkbox-module__checkbox___xxg5L {
|
|
295
292
|
display: flex;
|
|
296
293
|
align-items: center;
|
|
297
294
|
}
|
|
298
|
-
.Checkbox-
|
|
295
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
|
|
299
296
|
height: 16px;
|
|
300
297
|
width: 16px;
|
|
301
298
|
}
|
|
302
|
-
.Checkbox-
|
|
299
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
|
|
303
300
|
height: 20px;
|
|
304
301
|
width: 20px;
|
|
305
302
|
}
|
|
306
|
-
.Checkbox-
|
|
303
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
|
|
307
304
|
inset-inline-start: 27%;
|
|
308
305
|
}
|
|
309
|
-
.Checkbox-
|
|
306
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
|
|
310
307
|
height: 24px;
|
|
311
308
|
width: 24px;
|
|
312
309
|
}
|
|
313
|
-
.Checkbox-
|
|
310
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
|
|
314
311
|
inset-inline-start: 33%;
|
|
315
312
|
}
|
|
316
|
-
.Checkbox-
|
|
313
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
|
|
317
314
|
border-color: #ec5d25;
|
|
318
315
|
background-color: #ec5d25;
|
|
319
316
|
}
|
|
320
|
-
.Checkbox-
|
|
317
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
|
|
321
318
|
.ant-checkbox-checked:not(.ant-checkbox-disabled)
|
|
322
319
|
.ant-checkbox-inner {
|
|
323
320
|
--tw-bg-opacity: 1;
|
|
324
321
|
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
325
322
|
}
|
|
326
|
-
.Checkbox-
|
|
323
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
|
|
327
324
|
outline: 2px solid #0a65e7;
|
|
328
325
|
}
|
|
329
|
-
.Checkbox-
|
|
326
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
|
|
330
327
|
cursor: not-allowed;
|
|
331
328
|
}
|
|
332
|
-
.Checkbox-
|
|
329
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
|
|
333
330
|
opacity: 0.5;
|
|
334
331
|
border-color: #ec5d25;
|
|
335
332
|
background-color: #ec5d25;
|
|
336
333
|
}
|
|
337
|
-
.Checkbox-
|
|
334
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
|
|
338
335
|
border-color: #ffffff;
|
|
339
336
|
}
|
|
340
|
-
.Checkbox-
|
|
337
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
|
|
341
338
|
border-color: #b6bac3;
|
|
342
339
|
}
|
|
343
|
-
.Checkbox-
|
|
340
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
|
|
344
341
|
border-color: #6b7280;
|
|
345
342
|
}
|
|
346
|
-
.Checkbox-
|
|
343
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
|
|
347
344
|
outline: 2px solid #0a65e7;
|
|
348
345
|
}
|
|
349
|
-
.Checkbox-
|
|
346
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
|
|
350
347
|
cursor: not-allowed;
|
|
351
348
|
}
|
|
352
|
-
.Checkbox-
|
|
349
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
|
|
353
350
|
border-color: #b6bac3;
|
|
354
351
|
background-color: #f9fafb;
|
|
355
352
|
}
|
|
356
|
-
.Checkbox-
|
|
353
|
+
.Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
|
|
357
354
|
color: #363e4f;
|
|
358
355
|
}
|
|
359
|
-
.Checkbox-
|
|
356
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
|
|
360
357
|
color: #363e4f;
|
|
361
358
|
font-weight: 400;
|
|
362
359
|
font-size: 0.875rem;
|
|
363
360
|
line-height: 20px;
|
|
364
361
|
}
|
|
365
|
-
.Checkbox-
|
|
362
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
|
|
366
363
|
color: #363e4f;
|
|
367
364
|
font-weight: 500;
|
|
368
365
|
font-size: 0.875rem;
|
|
369
366
|
line-height: 20px;
|
|
370
367
|
}
|
|
371
|
-
.Checkbox-
|
|
368
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
372
369
|
opacity: 0.5;
|
|
373
370
|
border-color: #ec5d25;
|
|
374
371
|
background-color: #ec5d25;
|
|
375
372
|
}
|
|
376
|
-
.Checkbox-
|
|
373
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
377
374
|
border-color: #ffffff;
|
|
378
375
|
}
|
|
379
|
-
.Checkbox-
|
|
376
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
380
377
|
border-color: #ec5d25 !important;
|
|
381
378
|
background-color: #ec5d25 !important;
|
|
382
379
|
}
|
|
383
|
-
.Checkbox-
|
|
380
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
384
381
|
inset-inline-start: 50%;
|
|
385
382
|
width: 60%;
|
|
386
383
|
height: 3px;
|
|
@@ -388,39 +385,129 @@
|
|
|
388
385
|
background: white;
|
|
389
386
|
}
|
|
390
387
|
|
|
391
|
-
/* src/
|
|
392
|
-
.
|
|
388
|
+
/* src/atom/Modal/Modal.module.scss */
|
|
389
|
+
.Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
|
|
390
|
+
margin-top: 0;
|
|
391
|
+
margin-top: 0px;
|
|
392
|
+
}
|
|
393
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
|
|
394
|
+
padding: 24px;
|
|
395
|
+
padding: 1.5rem;
|
|
396
|
+
display: flex;
|
|
397
|
+
justify-content: flex-end;
|
|
398
|
+
}
|
|
399
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
|
|
400
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
401
|
+
min-width: 92px;
|
|
402
|
+
}
|
|
403
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
|
|
404
|
+
padding: 24px;
|
|
405
|
+
padding: 1.5rem;
|
|
406
|
+
padding-top: 0px;
|
|
407
|
+
display: flex;
|
|
408
|
+
justify-content: flex-end;
|
|
409
|
+
}
|
|
410
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
|
|
411
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
412
|
+
width: 50%;
|
|
413
|
+
}
|
|
414
|
+
.Modal-module__modal___PKrAi .ant-modal-content {
|
|
415
|
+
padding: 0;
|
|
416
|
+
border-radius: 0.75rem;
|
|
417
|
+
padding: 0px;
|
|
418
|
+
}
|
|
419
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
420
|
+
margin-bottom: 0px;
|
|
421
|
+
padding: 1rem;
|
|
422
|
+
}
|
|
423
|
+
@media (min-width: 576px) {
|
|
424
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
425
|
+
padding: 1.5rem;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
429
|
+
justify-content: flex-start;
|
|
430
|
+
padding-right: 1.25rem;
|
|
431
|
+
font-size: 1.25rem;
|
|
432
|
+
font-weight: 500;
|
|
433
|
+
line-height: 1.75rem;
|
|
434
|
+
--tw-text-opacity: 1;
|
|
435
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
436
|
+
}
|
|
437
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
438
|
+
display: flex;
|
|
439
|
+
align-items: flex-end;
|
|
440
|
+
justify-content: center;
|
|
441
|
+
}
|
|
442
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
|
|
443
|
+
display: flex;
|
|
444
|
+
align-items: center;
|
|
445
|
+
justify-content: center;
|
|
446
|
+
}
|
|
447
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
|
|
448
|
+
padding: 0 1.5rem 1.5rem;
|
|
449
|
+
max-height: 80vh;
|
|
450
|
+
overflow: auto;
|
|
451
|
+
}
|
|
452
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
453
|
+
top: 1.5rem;
|
|
454
|
+
right: 1.5rem;
|
|
455
|
+
padding-bottom: 0.25rem;
|
|
456
|
+
}
|
|
457
|
+
.Modal-module__modal___PKrAi .ant-btn-primary {
|
|
458
|
+
margin-inline-start: 0.5rem;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
/* CSS Modules */
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
/* CSS Modules */
|
|
465
|
+
/* src/atom/Tooltip/Tooltip.module.scss */
|
|
466
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
|
|
467
|
+
background-color: white !important;
|
|
468
|
+
color: #111827;
|
|
469
|
+
border-radius: 0.5rem;
|
|
470
|
+
padding: 0.625rem;
|
|
471
|
+
--tw-text-opacity: 1;
|
|
472
|
+
color: rgb(33 40 55 / var(--tw-text-opacity, 1));
|
|
473
|
+
}
|
|
474
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
|
|
475
|
+
background-color: white !important;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
/* src/atom/Button/Button.module.scss */
|
|
479
|
+
.Button-module__button___cLCyl {
|
|
393
480
|
display: flex;
|
|
394
481
|
align-items: center;
|
|
395
482
|
justify-content: center;
|
|
396
483
|
gap: 0.25rem;
|
|
397
484
|
border-radius: 0.5rem;
|
|
398
485
|
}
|
|
399
|
-
.Button-
|
|
486
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU {
|
|
400
487
|
height: 56px;
|
|
401
488
|
padding-left: 1rem;
|
|
402
489
|
padding-right: 1rem;
|
|
403
490
|
}
|
|
404
|
-
.Button-
|
|
491
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
|
|
405
492
|
width: 56px;
|
|
406
493
|
}
|
|
407
|
-
.Button-
|
|
494
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
|
|
408
495
|
height: 40px;
|
|
409
496
|
padding-left: 0.75rem;
|
|
410
497
|
padding-right: 0.75rem;
|
|
411
498
|
}
|
|
412
|
-
.Button-
|
|
499
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
|
|
413
500
|
width: 40px;
|
|
414
501
|
}
|
|
415
|
-
.Button-
|
|
502
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei {
|
|
416
503
|
height: 32px;
|
|
417
504
|
padding-left: 0.5rem;
|
|
418
505
|
padding-right: 0.5rem;
|
|
419
506
|
}
|
|
420
|
-
.Button-
|
|
507
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
|
|
421
508
|
width: 32px;
|
|
422
509
|
}
|
|
423
|
-
.Button-
|
|
510
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
|
|
424
511
|
--tw-bg-opacity: 1;
|
|
425
512
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
426
513
|
border-width: 1px;
|
|
@@ -429,31 +516,31 @@
|
|
|
429
516
|
border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
|
|
430
517
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
431
518
|
}
|
|
432
|
-
.Button-
|
|
519
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
|
|
433
520
|
--tw-bg-opacity: 1;
|
|
434
521
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
435
522
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
436
523
|
}
|
|
437
|
-
.Button-
|
|
524
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
|
|
438
525
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
439
526
|
}
|
|
440
|
-
.Button-
|
|
527
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
|
|
441
528
|
--tw-text-opacity: 1;
|
|
442
529
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
443
530
|
}
|
|
444
|
-
.Button-
|
|
531
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
|
|
445
532
|
--tw-text-opacity: 1;
|
|
446
533
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
447
534
|
}
|
|
448
|
-
.Button-
|
|
535
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
|
|
449
536
|
--tw-text-opacity: 1;
|
|
450
537
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
451
538
|
}
|
|
452
|
-
.Button-
|
|
539
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
|
|
453
540
|
--tw-text-opacity: 1;
|
|
454
541
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
455
542
|
}
|
|
456
|
-
.Button-
|
|
543
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
|
|
457
544
|
border-width: 1px;
|
|
458
545
|
border-style: solid;
|
|
459
546
|
--tw-bg-opacity: 1;
|
|
@@ -462,31 +549,31 @@
|
|
|
462
549
|
border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
|
|
463
550
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
464
551
|
}
|
|
465
|
-
.Button-
|
|
552
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
|
|
466
553
|
--tw-bg-opacity: 1;
|
|
467
554
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
468
555
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
469
556
|
}
|
|
470
|
-
.Button-
|
|
557
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
|
|
471
558
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
472
559
|
}
|
|
473
|
-
.Button-
|
|
560
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
|
|
474
561
|
--tw-text-opacity: 1;
|
|
475
562
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
476
563
|
}
|
|
477
|
-
.Button-
|
|
564
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
|
|
478
565
|
--tw-text-opacity: 1;
|
|
479
566
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
480
567
|
}
|
|
481
|
-
.Button-
|
|
568
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
|
|
482
569
|
--tw-text-opacity: 1;
|
|
483
570
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
484
571
|
}
|
|
485
|
-
.Button-
|
|
572
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
|
|
486
573
|
--tw-text-opacity: 1;
|
|
487
574
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
488
575
|
}
|
|
489
|
-
.Button-
|
|
576
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
|
|
490
577
|
border-width: 1px;
|
|
491
578
|
--tw-bg-opacity: 1;
|
|
492
579
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
@@ -495,31 +582,31 @@
|
|
|
495
582
|
border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
|
|
496
583
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
497
584
|
}
|
|
498
|
-
.Button-
|
|
585
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
|
|
499
586
|
--tw-bg-opacity: 1;
|
|
500
587
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
501
588
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
502
589
|
}
|
|
503
|
-
.Button-
|
|
590
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
|
|
504
591
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
505
592
|
}
|
|
506
|
-
.Button-
|
|
593
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
|
|
507
594
|
--tw-text-opacity: 1;
|
|
508
595
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
509
596
|
}
|
|
510
|
-
.Button-
|
|
597
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
|
|
511
598
|
--tw-text-opacity: 1;
|
|
512
599
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
513
600
|
}
|
|
514
|
-
.Button-
|
|
601
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
|
|
515
602
|
--tw-text-opacity: 1;
|
|
516
603
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
517
604
|
}
|
|
518
|
-
.Button-
|
|
605
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
|
|
519
606
|
--tw-text-opacity: 1;
|
|
520
607
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
521
608
|
}
|
|
522
|
-
.Button-
|
|
609
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
|
|
523
610
|
--tw-bg-opacity: 1;
|
|
524
611
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
525
612
|
border-width: 1px;
|
|
@@ -528,34 +615,34 @@
|
|
|
528
615
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
529
616
|
box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
|
|
530
617
|
}
|
|
531
|
-
.Button-
|
|
618
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
|
|
532
619
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
533
620
|
--tw-border-opacity: 1;
|
|
534
621
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
535
622
|
}
|
|
536
|
-
.Button-
|
|
623
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
|
|
537
624
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
538
625
|
}
|
|
539
|
-
.Button-
|
|
626
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
|
|
540
627
|
background-color: transparent;
|
|
541
628
|
border-width: 0px;
|
|
542
629
|
border-style: none;
|
|
543
630
|
box-shadow: none;
|
|
544
631
|
}
|
|
545
|
-
.Button-
|
|
632
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
|
|
546
633
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
547
634
|
border-style: none;
|
|
548
635
|
--tw-bg-opacity: 1;
|
|
549
636
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
550
637
|
}
|
|
551
|
-
.Button-
|
|
638
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
|
|
552
639
|
--tw-bg-opacity: 1;
|
|
553
640
|
background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
|
|
554
641
|
}
|
|
555
|
-
.Button-
|
|
642
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
|
|
556
643
|
outline: 2px solid rgba(236, 93, 37, 0.2);
|
|
557
644
|
}
|
|
558
|
-
.Button-
|
|
645
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
|
|
559
646
|
background-color: transparent;
|
|
560
647
|
padding: 0px;
|
|
561
648
|
border-width: 0px;
|
|
@@ -563,306 +650,454 @@
|
|
|
563
650
|
height: auto;
|
|
564
651
|
box-shadow: none;
|
|
565
652
|
}
|
|
566
|
-
.Button-
|
|
653
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
|
|
567
654
|
text-decoration: underline;
|
|
568
655
|
}
|
|
569
|
-
.Button-
|
|
656
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
|
|
570
657
|
box-shadow: none;
|
|
571
658
|
border-style: none;
|
|
572
659
|
background-color: transparent;
|
|
573
660
|
}
|
|
574
|
-
.Button-
|
|
661
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
|
|
575
662
|
background-color: transparent;
|
|
576
663
|
}
|
|
577
|
-
.Button-
|
|
664
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
|
|
578
665
|
outline: none;
|
|
579
666
|
}
|
|
580
667
|
|
|
581
|
-
/*
|
|
668
|
+
/* src/atom/Switch/Switch.module.scss */
|
|
669
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
|
|
670
|
+
height: 0.75rem;
|
|
671
|
+
min-width: 1.5rem
|
|
672
|
+
}
|
|
673
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
|
|
674
|
+
height: 0.5rem;
|
|
675
|
+
width: 0.5rem
|
|
676
|
+
}
|
|
677
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
|
|
678
|
+
--tw-bg-opacity: 1;
|
|
679
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
680
|
+
}
|
|
681
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
|
|
682
|
+
--tw-bg-opacity: 1;
|
|
683
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
684
|
+
}
|
|
582
685
|
|
|
686
|
+
/* src/atom/Radio/Radio.module.scss */
|
|
687
|
+
.Radio-module__radio___1CPAk {
|
|
688
|
+
display: flex;
|
|
689
|
+
align-items: center;
|
|
690
|
+
}
|
|
691
|
+
.Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
|
|
692
|
+
height: 16px;
|
|
693
|
+
width: 16px;
|
|
694
|
+
}
|
|
695
|
+
.Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
|
|
696
|
+
height: 20px;
|
|
697
|
+
width: 20px;
|
|
698
|
+
}
|
|
699
|
+
.Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
|
|
700
|
+
height: 24px;
|
|
701
|
+
width: 24px;
|
|
702
|
+
}
|
|
703
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
|
|
704
|
+
border-color: #EC5D25;
|
|
705
|
+
background-color: #EC5D25;
|
|
706
|
+
}
|
|
707
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
|
|
708
|
+
border-color: #B94710;
|
|
709
|
+
background-color: #B94710;
|
|
710
|
+
}
|
|
711
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
|
|
712
|
+
outline: 2px solid #0A65E7;
|
|
713
|
+
}
|
|
714
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
|
|
715
|
+
cursor: not-allowed;
|
|
716
|
+
}
|
|
717
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
|
|
718
|
+
border-color: #B6BAC3;
|
|
719
|
+
background-color: #B6BAC3;
|
|
720
|
+
}
|
|
721
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
|
|
722
|
+
transform: scale(0.375);
|
|
723
|
+
background-color: #FFFFFF;
|
|
724
|
+
}
|
|
725
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
|
|
726
|
+
border-color: #B6BAC3;
|
|
727
|
+
}
|
|
728
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
|
|
729
|
+
border-color: #6B7280;
|
|
730
|
+
}
|
|
731
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
|
|
732
|
+
outline: 2px solid #0A65E7;
|
|
733
|
+
}
|
|
734
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
|
|
735
|
+
cursor: not-allowed;
|
|
736
|
+
}
|
|
737
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
|
|
738
|
+
border-color: #B6BAC3;
|
|
739
|
+
background-color: #F9FAFB;
|
|
740
|
+
}
|
|
741
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
|
|
742
|
+
color: #363E4F;
|
|
743
|
+
font-weight: 400;
|
|
744
|
+
font-size: 0.875rem;
|
|
745
|
+
line-height: 20px;
|
|
746
|
+
}
|
|
747
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
|
|
748
|
+
color: #363E4F;
|
|
749
|
+
font-weight: 500;
|
|
750
|
+
font-size: 0.875rem;
|
|
751
|
+
line-height: 20px;
|
|
752
|
+
}
|
|
583
753
|
|
|
584
|
-
/*
|
|
585
|
-
|
|
586
|
-
.Button-module__button___PM45p {
|
|
754
|
+
/* src/atom/Checkbox/Checkbox.module.scss */
|
|
755
|
+
.Checkbox-module__checkbox___xxg5L {
|
|
587
756
|
display: flex;
|
|
588
757
|
align-items: center;
|
|
589
|
-
justify-content: center;
|
|
590
|
-
gap: 0.25rem;
|
|
591
|
-
border-radius: 0.5rem;
|
|
592
758
|
}
|
|
593
|
-
.
|
|
594
|
-
height:
|
|
595
|
-
|
|
596
|
-
padding-right: 1rem;
|
|
759
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
|
|
760
|
+
height: 16px;
|
|
761
|
+
width: 16px;
|
|
597
762
|
}
|
|
598
|
-
.
|
|
599
|
-
|
|
763
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
|
|
764
|
+
height: 20px;
|
|
765
|
+
width: 20px;
|
|
600
766
|
}
|
|
601
|
-
.
|
|
602
|
-
|
|
603
|
-
padding-left: 0.75rem;
|
|
604
|
-
padding-right: 0.75rem;
|
|
767
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
|
|
768
|
+
inset-inline-start: 27%;
|
|
605
769
|
}
|
|
606
|
-
.
|
|
607
|
-
|
|
770
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
|
|
771
|
+
height: 24px;
|
|
772
|
+
width: 24px;
|
|
608
773
|
}
|
|
609
|
-
.
|
|
610
|
-
|
|
611
|
-
padding-left: 0.5rem;
|
|
612
|
-
padding-right: 0.5rem;
|
|
774
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
|
|
775
|
+
inset-inline-start: 33%;
|
|
613
776
|
}
|
|
614
|
-
.
|
|
615
|
-
|
|
777
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
|
|
778
|
+
border-color: #ec5d25;
|
|
779
|
+
background-color: #ec5d25;
|
|
616
780
|
}
|
|
617
|
-
.
|
|
781
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
|
|
782
|
+
.ant-checkbox-checked:not(.ant-checkbox-disabled)
|
|
783
|
+
.ant-checkbox-inner {
|
|
618
784
|
--tw-bg-opacity: 1;
|
|
619
|
-
background-color: rgb(
|
|
620
|
-
border-width: 1px;
|
|
621
|
-
border-style: solid;
|
|
622
|
-
--tw-border-opacity: 1;
|
|
623
|
-
border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
|
|
624
|
-
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
785
|
+
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
625
786
|
}
|
|
626
|
-
.
|
|
627
|
-
|
|
628
|
-
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
629
|
-
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
787
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
|
|
788
|
+
outline: 2px solid #0a65e7;
|
|
630
789
|
}
|
|
631
|
-
.
|
|
632
|
-
|
|
790
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
|
|
791
|
+
cursor: not-allowed;
|
|
633
792
|
}
|
|
634
|
-
.
|
|
635
|
-
|
|
636
|
-
color:
|
|
793
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
|
|
794
|
+
opacity: 0.5;
|
|
795
|
+
border-color: #ec5d25;
|
|
796
|
+
background-color: #ec5d25;
|
|
637
797
|
}
|
|
638
|
-
.
|
|
639
|
-
|
|
640
|
-
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
798
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
|
|
799
|
+
border-color: #ffffff;
|
|
641
800
|
}
|
|
642
|
-
.
|
|
643
|
-
|
|
644
|
-
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
801
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
|
|
802
|
+
border-color: #b6bac3;
|
|
645
803
|
}
|
|
646
|
-
.
|
|
647
|
-
|
|
648
|
-
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
804
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
|
|
805
|
+
border-color: #6b7280;
|
|
649
806
|
}
|
|
650
|
-
.
|
|
651
|
-
|
|
652
|
-
border-style: solid;
|
|
653
|
-
--tw-bg-opacity: 1;
|
|
654
|
-
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
655
|
-
--tw-border-opacity: 1;
|
|
656
|
-
border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
|
|
657
|
-
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
807
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
|
|
808
|
+
outline: 2px solid #0a65e7;
|
|
658
809
|
}
|
|
659
|
-
.
|
|
660
|
-
|
|
661
|
-
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
662
|
-
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
810
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
|
|
811
|
+
cursor: not-allowed;
|
|
663
812
|
}
|
|
664
|
-
.
|
|
665
|
-
|
|
813
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
|
|
814
|
+
border-color: #b6bac3;
|
|
815
|
+
background-color: #f9fafb;
|
|
666
816
|
}
|
|
667
|
-
.
|
|
668
|
-
|
|
669
|
-
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
817
|
+
.Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
|
|
818
|
+
color: #363e4f;
|
|
670
819
|
}
|
|
671
|
-
.
|
|
672
|
-
|
|
673
|
-
|
|
820
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
|
|
821
|
+
color: #363e4f;
|
|
822
|
+
font-weight: 400;
|
|
823
|
+
font-size: 0.875rem;
|
|
824
|
+
line-height: 20px;
|
|
674
825
|
}
|
|
675
|
-
.
|
|
676
|
-
|
|
677
|
-
|
|
826
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
|
|
827
|
+
color: #363e4f;
|
|
828
|
+
font-weight: 500;
|
|
829
|
+
font-size: 0.875rem;
|
|
830
|
+
line-height: 20px;
|
|
831
|
+
}
|
|
832
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
833
|
+
opacity: 0.5;
|
|
834
|
+
border-color: #ec5d25;
|
|
835
|
+
background-color: #ec5d25;
|
|
836
|
+
}
|
|
837
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
838
|
+
border-color: #ffffff;
|
|
839
|
+
}
|
|
840
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
841
|
+
border-color: #ec5d25 !important;
|
|
842
|
+
background-color: #ec5d25 !important;
|
|
678
843
|
}
|
|
679
|
-
.
|
|
844
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
845
|
+
inset-inline-start: 50%;
|
|
846
|
+
width: 60%;
|
|
847
|
+
height: 3px;
|
|
848
|
+
border-radius: 4px;
|
|
849
|
+
background: white;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
/* src/atom/Modal/Modal.module.scss */
|
|
853
|
+
.Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
|
|
854
|
+
margin-top: 0;
|
|
855
|
+
margin-top: 0px;
|
|
856
|
+
}
|
|
857
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
|
|
858
|
+
padding: 24px;
|
|
859
|
+
padding: 1.5rem;
|
|
860
|
+
display: flex;
|
|
861
|
+
justify-content: flex-end;
|
|
862
|
+
}
|
|
863
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
|
|
864
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
865
|
+
min-width: 92px;
|
|
866
|
+
}
|
|
867
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
|
|
868
|
+
padding: 24px;
|
|
869
|
+
padding: 1.5rem;
|
|
870
|
+
padding-top: 0px;
|
|
871
|
+
display: flex;
|
|
872
|
+
justify-content: flex-end;
|
|
873
|
+
}
|
|
874
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
|
|
875
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
876
|
+
width: 50%;
|
|
877
|
+
}
|
|
878
|
+
.Modal-module__modal___PKrAi .ant-modal-content {
|
|
879
|
+
padding: 0;
|
|
880
|
+
border-radius: 0.75rem;
|
|
881
|
+
padding: 0px;
|
|
882
|
+
}
|
|
883
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
884
|
+
margin-bottom: 0px;
|
|
885
|
+
padding: 1rem;
|
|
886
|
+
}
|
|
887
|
+
@media (min-width: 576px) {
|
|
888
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
889
|
+
padding: 1.5rem;
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
893
|
+
justify-content: flex-start;
|
|
894
|
+
padding-right: 1.25rem;
|
|
895
|
+
font-size: 1.25rem;
|
|
896
|
+
font-weight: 500;
|
|
897
|
+
line-height: 1.75rem;
|
|
680
898
|
--tw-text-opacity: 1;
|
|
681
899
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
682
900
|
}
|
|
683
|
-
.
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
border-style: solid;
|
|
688
|
-
--tw-border-opacity: 1;
|
|
689
|
-
border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
|
|
690
|
-
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
901
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
902
|
+
display: flex;
|
|
903
|
+
align-items: flex-end;
|
|
904
|
+
justify-content: center;
|
|
691
905
|
}
|
|
692
|
-
.
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
906
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
|
|
907
|
+
display: flex;
|
|
908
|
+
align-items: center;
|
|
909
|
+
justify-content: center;
|
|
696
910
|
}
|
|
697
|
-
.
|
|
698
|
-
|
|
911
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
|
|
912
|
+
padding: 0 1.5rem 1.5rem;
|
|
913
|
+
max-height: 80vh;
|
|
914
|
+
overflow: auto;
|
|
699
915
|
}
|
|
700
|
-
.
|
|
701
|
-
|
|
702
|
-
|
|
916
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
917
|
+
top: 1.5rem;
|
|
918
|
+
right: 1.5rem;
|
|
919
|
+
padding-bottom: 0.25rem;
|
|
703
920
|
}
|
|
704
|
-
.
|
|
705
|
-
|
|
706
|
-
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
921
|
+
.Modal-module__modal___PKrAi .ant-btn-primary {
|
|
922
|
+
margin-inline-start: 0.5rem;
|
|
707
923
|
}
|
|
708
|
-
|
|
924
|
+
|
|
925
|
+
/* CSS Modules */
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
/* CSS Modules */
|
|
929
|
+
/* src/atom/Tooltip/Tooltip.module.scss */
|
|
930
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
|
|
931
|
+
background-color: white !important;
|
|
932
|
+
color: #111827;
|
|
933
|
+
border-radius: 0.5rem;
|
|
934
|
+
padding: 0.625rem;
|
|
709
935
|
--tw-text-opacity: 1;
|
|
710
|
-
color: rgb(
|
|
936
|
+
color: rgb(33 40 55 / var(--tw-text-opacity, 1));
|
|
711
937
|
}
|
|
712
|
-
.
|
|
713
|
-
|
|
714
|
-
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
938
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
|
|
939
|
+
background-color: white !important;
|
|
715
940
|
}
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
--tw-border-opacity: 1;
|
|
722
|
-
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
723
|
-
box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
|
|
941
|
+
|
|
942
|
+
/* src/atom/Radio/Radio.module.scss */
|
|
943
|
+
.Radio-module__radio___1CPAk {
|
|
944
|
+
display: flex;
|
|
945
|
+
align-items: center;
|
|
724
946
|
}
|
|
725
|
-
.
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
947
|
+
.Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
|
|
948
|
+
height: 16px;
|
|
949
|
+
width: 16px;
|
|
729
950
|
}
|
|
730
|
-
.
|
|
731
|
-
|
|
951
|
+
.Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
|
|
952
|
+
height: 20px;
|
|
953
|
+
width: 20px;
|
|
732
954
|
}
|
|
733
|
-
.
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
border-style: none;
|
|
737
|
-
box-shadow: none;
|
|
955
|
+
.Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
|
|
956
|
+
height: 24px;
|
|
957
|
+
width: 24px;
|
|
738
958
|
}
|
|
739
|
-
.
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
--tw-bg-opacity: 1;
|
|
743
|
-
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
959
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
|
|
960
|
+
border-color: #EC5D25;
|
|
961
|
+
background-color: #EC5D25;
|
|
744
962
|
}
|
|
745
|
-
.
|
|
746
|
-
|
|
747
|
-
background-color:
|
|
963
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
|
|
964
|
+
border-color: #B94710;
|
|
965
|
+
background-color: #B94710;
|
|
748
966
|
}
|
|
749
|
-
.
|
|
750
|
-
outline: 2px solid
|
|
967
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
|
|
968
|
+
outline: 2px solid #0A65E7;
|
|
751
969
|
}
|
|
752
|
-
.
|
|
753
|
-
|
|
754
|
-
padding: 0px;
|
|
755
|
-
border-width: 0px;
|
|
756
|
-
border-style: none;
|
|
757
|
-
height: auto;
|
|
758
|
-
box-shadow: none;
|
|
970
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
|
|
971
|
+
cursor: not-allowed;
|
|
759
972
|
}
|
|
760
|
-
.
|
|
761
|
-
|
|
973
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
|
|
974
|
+
border-color: #B6BAC3;
|
|
975
|
+
background-color: #B6BAC3;
|
|
762
976
|
}
|
|
763
|
-
.
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
background-color: transparent;
|
|
977
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
|
|
978
|
+
transform: scale(0.375);
|
|
979
|
+
background-color: #FFFFFF;
|
|
767
980
|
}
|
|
768
|
-
.
|
|
769
|
-
|
|
981
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
|
|
982
|
+
border-color: #B6BAC3;
|
|
770
983
|
}
|
|
771
|
-
.
|
|
772
|
-
|
|
984
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
|
|
985
|
+
border-color: #6B7280;
|
|
986
|
+
}
|
|
987
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
|
|
988
|
+
outline: 2px solid #0A65E7;
|
|
989
|
+
}
|
|
990
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
|
|
991
|
+
cursor: not-allowed;
|
|
992
|
+
}
|
|
993
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
|
|
994
|
+
border-color: #B6BAC3;
|
|
995
|
+
background-color: #F9FAFB;
|
|
996
|
+
}
|
|
997
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
|
|
998
|
+
color: #363E4F;
|
|
999
|
+
font-weight: 400;
|
|
1000
|
+
font-size: 0.875rem;
|
|
1001
|
+
line-height: 20px;
|
|
1002
|
+
}
|
|
1003
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
|
|
1004
|
+
color: #363E4F;
|
|
1005
|
+
font-weight: 500;
|
|
1006
|
+
font-size: 0.875rem;
|
|
1007
|
+
line-height: 20px;
|
|
773
1008
|
}
|
|
774
1009
|
|
|
775
|
-
/* src/Checkbox/Checkbox.module.scss */
|
|
776
|
-
.Checkbox-
|
|
1010
|
+
/* src/atom/Checkbox/Checkbox.module.scss */
|
|
1011
|
+
.Checkbox-module__checkbox___xxg5L {
|
|
777
1012
|
display: flex;
|
|
778
1013
|
align-items: center;
|
|
779
1014
|
}
|
|
780
|
-
.Checkbox-
|
|
1015
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
|
|
781
1016
|
height: 16px;
|
|
782
1017
|
width: 16px;
|
|
783
1018
|
}
|
|
784
|
-
.Checkbox-
|
|
1019
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
|
|
785
1020
|
height: 20px;
|
|
786
1021
|
width: 20px;
|
|
787
1022
|
}
|
|
788
|
-
.Checkbox-
|
|
1023
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
|
|
789
1024
|
inset-inline-start: 27%;
|
|
790
1025
|
}
|
|
791
|
-
.Checkbox-
|
|
1026
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
|
|
792
1027
|
height: 24px;
|
|
793
1028
|
width: 24px;
|
|
794
1029
|
}
|
|
795
|
-
.Checkbox-
|
|
1030
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
|
|
796
1031
|
inset-inline-start: 33%;
|
|
797
1032
|
}
|
|
798
|
-
.Checkbox-
|
|
1033
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
|
|
799
1034
|
border-color: #ec5d25;
|
|
800
1035
|
background-color: #ec5d25;
|
|
801
1036
|
}
|
|
802
|
-
.Checkbox-
|
|
1037
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
|
|
803
1038
|
.ant-checkbox-checked:not(.ant-checkbox-disabled)
|
|
804
1039
|
.ant-checkbox-inner {
|
|
805
1040
|
--tw-bg-opacity: 1;
|
|
806
1041
|
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
807
1042
|
}
|
|
808
|
-
.Checkbox-
|
|
1043
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
|
|
809
1044
|
outline: 2px solid #0a65e7;
|
|
810
1045
|
}
|
|
811
|
-
.Checkbox-
|
|
1046
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
|
|
812
1047
|
cursor: not-allowed;
|
|
813
1048
|
}
|
|
814
|
-
.Checkbox-
|
|
1049
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
|
|
815
1050
|
opacity: 0.5;
|
|
816
1051
|
border-color: #ec5d25;
|
|
817
1052
|
background-color: #ec5d25;
|
|
818
1053
|
}
|
|
819
|
-
.Checkbox-
|
|
1054
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
|
|
820
1055
|
border-color: #ffffff;
|
|
821
1056
|
}
|
|
822
|
-
.Checkbox-
|
|
1057
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
|
|
823
1058
|
border-color: #b6bac3;
|
|
824
1059
|
}
|
|
825
|
-
.Checkbox-
|
|
1060
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
|
|
826
1061
|
border-color: #6b7280;
|
|
827
1062
|
}
|
|
828
|
-
.Checkbox-
|
|
1063
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
|
|
829
1064
|
outline: 2px solid #0a65e7;
|
|
830
1065
|
}
|
|
831
|
-
.Checkbox-
|
|
1066
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
|
|
832
1067
|
cursor: not-allowed;
|
|
833
1068
|
}
|
|
834
|
-
.Checkbox-
|
|
1069
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
|
|
835
1070
|
border-color: #b6bac3;
|
|
836
1071
|
background-color: #f9fafb;
|
|
837
1072
|
}
|
|
838
|
-
.Checkbox-
|
|
1073
|
+
.Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
|
|
839
1074
|
color: #363e4f;
|
|
840
1075
|
}
|
|
841
|
-
.Checkbox-
|
|
1076
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
|
|
842
1077
|
color: #363e4f;
|
|
843
1078
|
font-weight: 400;
|
|
844
1079
|
font-size: 0.875rem;
|
|
845
1080
|
line-height: 20px;
|
|
846
1081
|
}
|
|
847
|
-
.Checkbox-
|
|
1082
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
|
|
848
1083
|
color: #363e4f;
|
|
849
1084
|
font-weight: 500;
|
|
850
1085
|
font-size: 0.875rem;
|
|
851
1086
|
line-height: 20px;
|
|
852
1087
|
}
|
|
853
|
-
.Checkbox-
|
|
1088
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
854
1089
|
opacity: 0.5;
|
|
855
1090
|
border-color: #ec5d25;
|
|
856
1091
|
background-color: #ec5d25;
|
|
857
1092
|
}
|
|
858
|
-
.Checkbox-
|
|
1093
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
859
1094
|
border-color: #ffffff;
|
|
860
1095
|
}
|
|
861
|
-
.Checkbox-
|
|
1096
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
862
1097
|
border-color: #ec5d25 !important;
|
|
863
1098
|
background-color: #ec5d25 !important;
|
|
864
1099
|
}
|
|
865
|
-
.Checkbox-
|
|
1100
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
866
1101
|
inset-inline-start: 50%;
|
|
867
1102
|
width: 60%;
|
|
868
1103
|
height: 3px;
|
|
@@ -870,40 +1105,57 @@
|
|
|
870
1105
|
background: white;
|
|
871
1106
|
}
|
|
872
1107
|
|
|
873
|
-
/*
|
|
874
|
-
|
|
875
|
-
.
|
|
1108
|
+
/* src/atom/Switch/Switch.module.scss */
|
|
1109
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
|
|
1110
|
+
height: 0.75rem;
|
|
1111
|
+
min-width: 1.5rem
|
|
1112
|
+
}
|
|
1113
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
|
|
1114
|
+
height: 0.5rem;
|
|
1115
|
+
width: 0.5rem
|
|
1116
|
+
}
|
|
1117
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
|
|
1118
|
+
--tw-bg-opacity: 1;
|
|
1119
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
1120
|
+
}
|
|
1121
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
|
|
1122
|
+
--tw-bg-opacity: 1;
|
|
1123
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
/* src/atom/Button/Button.module.scss */
|
|
1127
|
+
.Button-module__button___cLCyl {
|
|
876
1128
|
display: flex;
|
|
877
1129
|
align-items: center;
|
|
878
1130
|
justify-content: center;
|
|
879
1131
|
gap: 0.25rem;
|
|
880
1132
|
border-radius: 0.5rem;
|
|
881
1133
|
}
|
|
882
|
-
.Button-
|
|
1134
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU {
|
|
883
1135
|
height: 56px;
|
|
884
1136
|
padding-left: 1rem;
|
|
885
1137
|
padding-right: 1rem;
|
|
886
1138
|
}
|
|
887
|
-
.Button-
|
|
1139
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
|
|
888
1140
|
width: 56px;
|
|
889
1141
|
}
|
|
890
|
-
.Button-
|
|
1142
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
|
|
891
1143
|
height: 40px;
|
|
892
1144
|
padding-left: 0.75rem;
|
|
893
1145
|
padding-right: 0.75rem;
|
|
894
1146
|
}
|
|
895
|
-
.Button-
|
|
1147
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
|
|
896
1148
|
width: 40px;
|
|
897
1149
|
}
|
|
898
|
-
.Button-
|
|
1150
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei {
|
|
899
1151
|
height: 32px;
|
|
900
1152
|
padding-left: 0.5rem;
|
|
901
1153
|
padding-right: 0.5rem;
|
|
902
1154
|
}
|
|
903
|
-
.Button-
|
|
1155
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
|
|
904
1156
|
width: 32px;
|
|
905
1157
|
}
|
|
906
|
-
.Button-
|
|
1158
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
|
|
907
1159
|
--tw-bg-opacity: 1;
|
|
908
1160
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
909
1161
|
border-width: 1px;
|
|
@@ -912,31 +1164,31 @@
|
|
|
912
1164
|
border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
|
|
913
1165
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
914
1166
|
}
|
|
915
|
-
.Button-
|
|
1167
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
|
|
916
1168
|
--tw-bg-opacity: 1;
|
|
917
1169
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
918
1170
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
919
1171
|
}
|
|
920
|
-
.Button-
|
|
1172
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
|
|
921
1173
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
922
1174
|
}
|
|
923
|
-
.Button-
|
|
1175
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
|
|
924
1176
|
--tw-text-opacity: 1;
|
|
925
1177
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
926
1178
|
}
|
|
927
|
-
.Button-
|
|
1179
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
|
|
928
1180
|
--tw-text-opacity: 1;
|
|
929
1181
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
930
1182
|
}
|
|
931
|
-
.Button-
|
|
1183
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
|
|
932
1184
|
--tw-text-opacity: 1;
|
|
933
1185
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
934
1186
|
}
|
|
935
|
-
.Button-
|
|
1187
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
|
|
936
1188
|
--tw-text-opacity: 1;
|
|
937
1189
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
938
1190
|
}
|
|
939
|
-
.Button-
|
|
1191
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
|
|
940
1192
|
border-width: 1px;
|
|
941
1193
|
border-style: solid;
|
|
942
1194
|
--tw-bg-opacity: 1;
|
|
@@ -945,31 +1197,31 @@
|
|
|
945
1197
|
border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
|
|
946
1198
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
947
1199
|
}
|
|
948
|
-
.Button-
|
|
1200
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
|
|
949
1201
|
--tw-bg-opacity: 1;
|
|
950
1202
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
951
1203
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
952
1204
|
}
|
|
953
|
-
.Button-
|
|
1205
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
|
|
954
1206
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
955
1207
|
}
|
|
956
|
-
.Button-
|
|
1208
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
|
|
957
1209
|
--tw-text-opacity: 1;
|
|
958
1210
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
959
1211
|
}
|
|
960
|
-
.Button-
|
|
1212
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
|
|
961
1213
|
--tw-text-opacity: 1;
|
|
962
1214
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
963
1215
|
}
|
|
964
|
-
.Button-
|
|
1216
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
|
|
965
1217
|
--tw-text-opacity: 1;
|
|
966
1218
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
967
1219
|
}
|
|
968
|
-
.Button-
|
|
1220
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
|
|
969
1221
|
--tw-text-opacity: 1;
|
|
970
1222
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
971
1223
|
}
|
|
972
|
-
.Button-
|
|
1224
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
|
|
973
1225
|
border-width: 1px;
|
|
974
1226
|
--tw-bg-opacity: 1;
|
|
975
1227
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
@@ -978,31 +1230,31 @@
|
|
|
978
1230
|
border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
|
|
979
1231
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
980
1232
|
}
|
|
981
|
-
.Button-
|
|
1233
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
|
|
982
1234
|
--tw-bg-opacity: 1;
|
|
983
1235
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
984
1236
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
985
1237
|
}
|
|
986
|
-
.Button-
|
|
1238
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
|
|
987
1239
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
988
1240
|
}
|
|
989
|
-
.Button-
|
|
1241
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
|
|
990
1242
|
--tw-text-opacity: 1;
|
|
991
1243
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
992
1244
|
}
|
|
993
|
-
.Button-
|
|
1245
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
|
|
994
1246
|
--tw-text-opacity: 1;
|
|
995
1247
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
996
1248
|
}
|
|
997
|
-
.Button-
|
|
1249
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
|
|
998
1250
|
--tw-text-opacity: 1;
|
|
999
1251
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1000
1252
|
}
|
|
1001
|
-
.Button-
|
|
1253
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
|
|
1002
1254
|
--tw-text-opacity: 1;
|
|
1003
1255
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1004
1256
|
}
|
|
1005
|
-
.Button-
|
|
1257
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
|
|
1006
1258
|
--tw-bg-opacity: 1;
|
|
1007
1259
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1008
1260
|
border-width: 1px;
|
|
@@ -1011,34 +1263,34 @@
|
|
|
1011
1263
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
1012
1264
|
box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
|
|
1013
1265
|
}
|
|
1014
|
-
.Button-
|
|
1266
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
|
|
1015
1267
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
1016
1268
|
--tw-border-opacity: 1;
|
|
1017
1269
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
1018
1270
|
}
|
|
1019
|
-
.Button-
|
|
1271
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
|
|
1020
1272
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
1021
1273
|
}
|
|
1022
|
-
.Button-
|
|
1274
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
|
|
1023
1275
|
background-color: transparent;
|
|
1024
1276
|
border-width: 0px;
|
|
1025
1277
|
border-style: none;
|
|
1026
1278
|
box-shadow: none;
|
|
1027
1279
|
}
|
|
1028
|
-
.Button-
|
|
1280
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
|
|
1029
1281
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
1030
1282
|
border-style: none;
|
|
1031
1283
|
--tw-bg-opacity: 1;
|
|
1032
1284
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1033
1285
|
}
|
|
1034
|
-
.Button-
|
|
1286
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
|
|
1035
1287
|
--tw-bg-opacity: 1;
|
|
1036
1288
|
background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
|
|
1037
1289
|
}
|
|
1038
|
-
.Button-
|
|
1290
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
|
|
1039
1291
|
outline: 2px solid rgba(236, 93, 37, 0.2);
|
|
1040
1292
|
}
|
|
1041
|
-
.Button-
|
|
1293
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
|
|
1042
1294
|
background-color: transparent;
|
|
1043
1295
|
padding: 0px;
|
|
1044
1296
|
border-width: 0px;
|
|
@@ -1046,214 +1298,202 @@
|
|
|
1046
1298
|
height: auto;
|
|
1047
1299
|
box-shadow: none;
|
|
1048
1300
|
}
|
|
1049
|
-
.Button-
|
|
1301
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
|
|
1050
1302
|
text-decoration: underline;
|
|
1051
1303
|
}
|
|
1052
|
-
.Button-
|
|
1304
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
|
|
1053
1305
|
box-shadow: none;
|
|
1054
1306
|
border-style: none;
|
|
1055
1307
|
background-color: transparent;
|
|
1056
1308
|
}
|
|
1057
|
-
.Button-
|
|
1309
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
|
|
1058
1310
|
background-color: transparent;
|
|
1059
1311
|
}
|
|
1060
|
-
.Button-
|
|
1312
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
|
|
1061
1313
|
outline: none;
|
|
1062
1314
|
}
|
|
1063
1315
|
|
|
1064
|
-
/* src/
|
|
1065
|
-
.
|
|
1316
|
+
/* src/atom/Modal/Modal.module.scss */
|
|
1317
|
+
.Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
|
|
1318
|
+
margin-top: 0;
|
|
1319
|
+
margin-top: 0px;
|
|
1320
|
+
}
|
|
1321
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
|
|
1322
|
+
padding: 24px;
|
|
1323
|
+
padding: 1.5rem;
|
|
1066
1324
|
display: flex;
|
|
1067
|
-
|
|
1068
|
-
}
|
|
1069
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_small___lgUjj .ant-checkbox .ant-checkbox-inner {
|
|
1070
|
-
height: 16px;
|
|
1071
|
-
width: 16px;
|
|
1072
|
-
}
|
|
1073
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_medium___Npyaz .ant-checkbox .ant-checkbox-inner {
|
|
1074
|
-
height: 20px;
|
|
1075
|
-
width: 20px;
|
|
1076
|
-
}
|
|
1077
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_medium___Npyaz .ant-checkbox .ant-checkbox-inner::after {
|
|
1078
|
-
inset-inline-start: 27%;
|
|
1079
|
-
}
|
|
1080
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_large___chR9U .ant-checkbox .ant-checkbox-inner {
|
|
1081
|
-
height: 24px;
|
|
1082
|
-
width: 24px;
|
|
1083
|
-
}
|
|
1084
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__size_large___chR9U .ant-checkbox .ant-checkbox-inner::after {
|
|
1085
|
-
inset-inline-start: 33%;
|
|
1086
|
-
}
|
|
1087
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_checked___fhhpM .ant-checkbox-checked .ant-checkbox-inner {
|
|
1088
|
-
border-color: #ec5d25;
|
|
1089
|
-
background-color: #ec5d25;
|
|
1090
|
-
}
|
|
1091
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_checked___fhhpM.ant-checkbox-wrapper:hover
|
|
1092
|
-
.ant-checkbox-checked:not(.ant-checkbox-disabled)
|
|
1093
|
-
.ant-checkbox-inner {
|
|
1094
|
-
--tw-bg-opacity: 1;
|
|
1095
|
-
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
1096
|
-
}
|
|
1097
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_checked___fhhpM .ant-checkbox-checked:focus-visible {
|
|
1098
|
-
outline: 2px solid #0a65e7;
|
|
1099
|
-
}
|
|
1100
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_checked___fhhpM.Checkbox-module__disabled___xqtab {
|
|
1101
|
-
cursor: not-allowed;
|
|
1325
|
+
justify-content: flex-end;
|
|
1102
1326
|
}
|
|
1103
|
-
.
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
background-color: #ec5d25;
|
|
1327
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
|
|
1328
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
1329
|
+
min-width: 92px;
|
|
1107
1330
|
}
|
|
1108
|
-
.
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_unchecked___1zNB7 .ant-checkbox:hover .ant-checkbox-inner {
|
|
1115
|
-
border-color: #6b7280;
|
|
1116
|
-
}
|
|
1117
|
-
.Checkbox-module__checkbox___D2qRJ.Checkbox-module__type_unchecked___1zNB7 .ant-checkbox:focus-visible {
|
|
1118
|
-
outline: 2px solid #0a65e7;
|
|
1331
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
|
|
1332
|
+
padding: 24px;
|
|
1333
|
+
padding: 1.5rem;
|
|
1334
|
+
padding-top: 0px;
|
|
1335
|
+
display: flex;
|
|
1336
|
+
justify-content: flex-end;
|
|
1119
1337
|
}
|
|
1120
|
-
.
|
|
1121
|
-
|
|
1338
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
|
|
1339
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
1340
|
+
width: 50%;
|
|
1122
1341
|
}
|
|
1123
|
-
.
|
|
1124
|
-
|
|
1125
|
-
|
|
1342
|
+
.Modal-module__modal___PKrAi .ant-modal-content {
|
|
1343
|
+
padding: 0;
|
|
1344
|
+
border-radius: 0.75rem;
|
|
1345
|
+
padding: 0px;
|
|
1126
1346
|
}
|
|
1127
|
-
.
|
|
1128
|
-
|
|
1347
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
1348
|
+
margin-bottom: 0px;
|
|
1349
|
+
padding: 1rem;
|
|
1129
1350
|
}
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
line-height: 20px;
|
|
1351
|
+
@media (min-width: 576px) {
|
|
1352
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
1353
|
+
padding: 1.5rem;
|
|
1354
|
+
}
|
|
1135
1355
|
}
|
|
1136
|
-
.
|
|
1137
|
-
|
|
1356
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
1357
|
+
justify-content: flex-start;
|
|
1358
|
+
padding-right: 1.25rem;
|
|
1359
|
+
font-size: 1.25rem;
|
|
1138
1360
|
font-weight: 500;
|
|
1139
|
-
|
|
1140
|
-
|
|
1361
|
+
line-height: 1.75rem;
|
|
1362
|
+
--tw-text-opacity: 1;
|
|
1363
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1141
1364
|
}
|
|
1142
|
-
.
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1365
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
1366
|
+
display: flex;
|
|
1367
|
+
align-items: flex-end;
|
|
1368
|
+
justify-content: center;
|
|
1146
1369
|
}
|
|
1147
|
-
.
|
|
1148
|
-
|
|
1370
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
|
|
1371
|
+
display: flex;
|
|
1372
|
+
align-items: center;
|
|
1373
|
+
justify-content: center;
|
|
1149
1374
|
}
|
|
1150
|
-
.
|
|
1151
|
-
|
|
1152
|
-
|
|
1375
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
|
|
1376
|
+
padding: 0 1.5rem 1.5rem;
|
|
1377
|
+
max-height: 80vh;
|
|
1378
|
+
overflow: auto;
|
|
1153
1379
|
}
|
|
1154
|
-
.
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1380
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
1381
|
+
top: 1.5rem;
|
|
1382
|
+
right: 1.5rem;
|
|
1383
|
+
padding-bottom: 0.25rem;
|
|
1384
|
+
}
|
|
1385
|
+
.Modal-module__modal___PKrAi .ant-btn-primary {
|
|
1386
|
+
margin-inline-start: 0.5rem;
|
|
1160
1387
|
}
|
|
1161
1388
|
|
|
1162
1389
|
/* CSS Modules */
|
|
1163
1390
|
|
|
1164
1391
|
|
|
1165
1392
|
/* CSS Modules */
|
|
1166
|
-
/* src/
|
|
1167
|
-
.
|
|
1393
|
+
/* src/atom/Tooltip/Tooltip.module.scss */
|
|
1394
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-content .ant-tooltip-inner {
|
|
1395
|
+
background-color: white !important;
|
|
1396
|
+
color: #111827;
|
|
1397
|
+
border-radius: 0.5rem;
|
|
1398
|
+
padding: 0.625rem;
|
|
1399
|
+
--tw-text-opacity: 1;
|
|
1400
|
+
color: rgb(33 40 55 / var(--tw-text-opacity, 1));
|
|
1401
|
+
}
|
|
1402
|
+
.Tooltip-module__light___H5oCc .ant-tooltip-arrow:before {
|
|
1403
|
+
background-color: white !important;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
/* src/atom/Checkbox/Checkbox.module.scss */
|
|
1407
|
+
.Checkbox-module__checkbox___xxg5L {
|
|
1168
1408
|
display: flex;
|
|
1169
1409
|
align-items: center;
|
|
1170
1410
|
}
|
|
1171
|
-
.Checkbox-
|
|
1411
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_small___Kknlo .ant-checkbox .ant-checkbox-inner {
|
|
1172
1412
|
height: 16px;
|
|
1173
1413
|
width: 16px;
|
|
1174
1414
|
}
|
|
1175
|
-
.Checkbox-
|
|
1415
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner {
|
|
1176
1416
|
height: 20px;
|
|
1177
1417
|
width: 20px;
|
|
1178
1418
|
}
|
|
1179
|
-
.Checkbox-
|
|
1419
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_medium___V6Ah8 .ant-checkbox .ant-checkbox-inner::after {
|
|
1180
1420
|
inset-inline-start: 27%;
|
|
1181
1421
|
}
|
|
1182
|
-
.Checkbox-
|
|
1422
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner {
|
|
1183
1423
|
height: 24px;
|
|
1184
1424
|
width: 24px;
|
|
1185
1425
|
}
|
|
1186
|
-
.Checkbox-
|
|
1426
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__size_large___eWjFY .ant-checkbox .ant-checkbox-inner::after {
|
|
1187
1427
|
inset-inline-start: 33%;
|
|
1188
1428
|
}
|
|
1189
|
-
.Checkbox-
|
|
1429
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked .ant-checkbox-inner {
|
|
1190
1430
|
border-color: #ec5d25;
|
|
1191
1431
|
background-color: #ec5d25;
|
|
1192
1432
|
}
|
|
1193
|
-
.Checkbox-
|
|
1433
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.ant-checkbox-wrapper:hover
|
|
1194
1434
|
.ant-checkbox-checked:not(.ant-checkbox-disabled)
|
|
1195
1435
|
.ant-checkbox-inner {
|
|
1196
1436
|
--tw-bg-opacity: 1;
|
|
1197
1437
|
background-color: rgb(185 71 16 / var(--tw-bg-opacity, 1));
|
|
1198
1438
|
}
|
|
1199
|
-
.Checkbox-
|
|
1439
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T .ant-checkbox-checked:focus-visible {
|
|
1200
1440
|
outline: 2px solid #0a65e7;
|
|
1201
1441
|
}
|
|
1202
|
-
.Checkbox-
|
|
1442
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 {
|
|
1203
1443
|
cursor: not-allowed;
|
|
1204
1444
|
}
|
|
1205
|
-
.Checkbox-
|
|
1445
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner {
|
|
1206
1446
|
opacity: 0.5;
|
|
1207
1447
|
border-color: #ec5d25;
|
|
1208
1448
|
background-color: #ec5d25;
|
|
1209
1449
|
}
|
|
1210
|
-
.Checkbox-
|
|
1450
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_checked___5742T.Checkbox-module__disabled___v-RG1 .ant-checkbox-checked .ant-checkbox-inner::after {
|
|
1211
1451
|
border-color: #ffffff;
|
|
1212
1452
|
}
|
|
1213
|
-
.Checkbox-
|
|
1453
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox .ant-checkbox-inner {
|
|
1214
1454
|
border-color: #b6bac3;
|
|
1215
1455
|
}
|
|
1216
|
-
.Checkbox-
|
|
1456
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:hover .ant-checkbox-inner {
|
|
1217
1457
|
border-color: #6b7280;
|
|
1218
1458
|
}
|
|
1219
|
-
.Checkbox-
|
|
1459
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP .ant-checkbox:focus-visible {
|
|
1220
1460
|
outline: 2px solid #0a65e7;
|
|
1221
1461
|
}
|
|
1222
|
-
.Checkbox-
|
|
1462
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 {
|
|
1223
1463
|
cursor: not-allowed;
|
|
1224
1464
|
}
|
|
1225
|
-
.Checkbox-
|
|
1465
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__type_unchecked___QFMpP.Checkbox-module__disabled___v-RG1 .ant-checkbox .ant-checkbox-inner {
|
|
1226
1466
|
border-color: #b6bac3;
|
|
1227
1467
|
background-color: #f9fafb;
|
|
1228
1468
|
}
|
|
1229
|
-
.Checkbox-
|
|
1469
|
+
.Checkbox-module__checkbox___xxg5L .ant-checkbox-disabled + span {
|
|
1230
1470
|
color: #363e4f;
|
|
1231
1471
|
}
|
|
1232
|
-
.Checkbox-
|
|
1472
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_normal___faYKo {
|
|
1233
1473
|
color: #363e4f;
|
|
1234
1474
|
font-weight: 400;
|
|
1235
1475
|
font-size: 0.875rem;
|
|
1236
1476
|
line-height: 20px;
|
|
1237
1477
|
}
|
|
1238
|
-
.Checkbox-
|
|
1478
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_emphasized___-koYj {
|
|
1239
1479
|
color: #363e4f;
|
|
1240
1480
|
font-weight: 500;
|
|
1241
1481
|
font-size: 0.875rem;
|
|
1242
1482
|
line-height: 20px;
|
|
1243
1483
|
}
|
|
1244
|
-
.Checkbox-
|
|
1484
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
1245
1485
|
opacity: 0.5;
|
|
1246
1486
|
border-color: #ec5d25;
|
|
1247
1487
|
background-color: #ec5d25;
|
|
1248
1488
|
}
|
|
1249
|
-
.Checkbox-
|
|
1489
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc.Checkbox-module__disabled___v-RG1 .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
1250
1490
|
border-color: #ffffff;
|
|
1251
1491
|
}
|
|
1252
|
-
.Checkbox-
|
|
1492
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
1253
1493
|
border-color: #ec5d25 !important;
|
|
1254
1494
|
background-color: #ec5d25 !important;
|
|
1255
1495
|
}
|
|
1256
|
-
.Checkbox-
|
|
1496
|
+
.Checkbox-module__checkbox___xxg5L.Checkbox-module__variant_indeterminate___J5Xcc .ant-checkbox-indeterminate .ant-checkbox-inner::after {
|
|
1257
1497
|
inset-inline-start: 50%;
|
|
1258
1498
|
width: 60%;
|
|
1259
1499
|
height: 3px;
|
|
@@ -1261,39 +1501,39 @@
|
|
|
1261
1501
|
background: white;
|
|
1262
1502
|
}
|
|
1263
1503
|
|
|
1264
|
-
/* src/Button/Button.module.scss */
|
|
1265
|
-
.Button-
|
|
1504
|
+
/* src/atom/Button/Button.module.scss */
|
|
1505
|
+
.Button-module__button___cLCyl {
|
|
1266
1506
|
display: flex;
|
|
1267
1507
|
align-items: center;
|
|
1268
1508
|
justify-content: center;
|
|
1269
1509
|
gap: 0.25rem;
|
|
1270
1510
|
border-radius: 0.5rem;
|
|
1271
1511
|
}
|
|
1272
|
-
.Button-
|
|
1512
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU {
|
|
1273
1513
|
height: 56px;
|
|
1274
1514
|
padding-left: 1rem;
|
|
1275
1515
|
padding-right: 1rem;
|
|
1276
1516
|
}
|
|
1277
|
-
.Button-
|
|
1517
|
+
.Button-module__button___cLCyl.Button-module__size_large___S-mbU.Button-module__shape_circle___sPUS5 {
|
|
1278
1518
|
width: 56px;
|
|
1279
1519
|
}
|
|
1280
|
-
.Button-
|
|
1520
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj {
|
|
1281
1521
|
height: 40px;
|
|
1282
1522
|
padding-left: 0.75rem;
|
|
1283
1523
|
padding-right: 0.75rem;
|
|
1284
1524
|
}
|
|
1285
|
-
.Button-
|
|
1525
|
+
.Button-module__button___cLCyl.Button-module__size_normal___qJUMj.Button-module__shape_circle___sPUS5 {
|
|
1286
1526
|
width: 40px;
|
|
1287
1527
|
}
|
|
1288
|
-
.Button-
|
|
1528
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei {
|
|
1289
1529
|
height: 32px;
|
|
1290
1530
|
padding-left: 0.5rem;
|
|
1291
1531
|
padding-right: 0.5rem;
|
|
1292
1532
|
}
|
|
1293
|
-
.Button-
|
|
1533
|
+
.Button-module__button___cLCyl.Button-module__size_small___IUeei.Button-module__shape_circle___sPUS5 {
|
|
1294
1534
|
width: 32px;
|
|
1295
1535
|
}
|
|
1296
|
-
.Button-
|
|
1536
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz- {
|
|
1297
1537
|
--tw-bg-opacity: 1;
|
|
1298
1538
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
1299
1539
|
border-width: 1px;
|
|
@@ -1302,31 +1542,31 @@
|
|
|
1302
1542
|
border-color: rgb(236 93 37 / var(--tw-border-opacity, 1));
|
|
1303
1543
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
1304
1544
|
}
|
|
1305
|
-
.Button-
|
|
1545
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.ant-btn-primary:active {
|
|
1306
1546
|
--tw-bg-opacity: 1;
|
|
1307
1547
|
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1));
|
|
1308
1548
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
1309
1549
|
}
|
|
1310
|
-
.Button-
|
|
1550
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-:focus-visible {
|
|
1311
1551
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
1312
1552
|
}
|
|
1313
|
-
.Button-
|
|
1553
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd {
|
|
1314
1554
|
--tw-text-opacity: 1;
|
|
1315
1555
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
1316
1556
|
}
|
|
1317
|
-
.Button-
|
|
1557
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_subtle___BMbbd:hover {
|
|
1318
1558
|
--tw-text-opacity: 1;
|
|
1319
1559
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
1320
1560
|
}
|
|
1321
|
-
.Button-
|
|
1561
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9 {
|
|
1322
1562
|
--tw-text-opacity: 1;
|
|
1323
1563
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
1324
1564
|
}
|
|
1325
|
-
.Button-
|
|
1565
|
+
.Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_primary___Tauz-.Button-module__variant_link___Cj1O9:hover {
|
|
1326
1566
|
--tw-text-opacity: 1;
|
|
1327
1567
|
color: rgb(236 93 37 / var(--tw-text-opacity, 1));
|
|
1328
1568
|
}
|
|
1329
|
-
.Button-
|
|
1569
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA {
|
|
1330
1570
|
border-width: 1px;
|
|
1331
1571
|
border-style: solid;
|
|
1332
1572
|
--tw-bg-opacity: 1;
|
|
@@ -1335,31 +1575,31 @@
|
|
|
1335
1575
|
border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
|
|
1336
1576
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
1337
1577
|
}
|
|
1338
|
-
.Button-
|
|
1578
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:active {
|
|
1339
1579
|
--tw-bg-opacity: 1;
|
|
1340
1580
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
|
|
1341
1581
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
1342
1582
|
}
|
|
1343
|
-
.Button-
|
|
1583
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.ant-btn-primary:focus-visible {
|
|
1344
1584
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
1345
1585
|
}
|
|
1346
|
-
.Button-
|
|
1586
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd {
|
|
1347
1587
|
--tw-text-opacity: 1;
|
|
1348
1588
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1349
1589
|
}
|
|
1350
|
-
.Button-
|
|
1590
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_subtle___BMbbd:hover {
|
|
1351
1591
|
--tw-text-opacity: 1;
|
|
1352
1592
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1353
1593
|
}
|
|
1354
|
-
.Button-
|
|
1594
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9 {
|
|
1355
1595
|
--tw-text-opacity: 1;
|
|
1356
1596
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1357
1597
|
}
|
|
1358
|
-
.Button-
|
|
1598
|
+
.Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_secondary___CLmrA.Button-module__variant_link___Cj1O9:hover {
|
|
1359
1599
|
--tw-text-opacity: 1;
|
|
1360
1600
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1361
1601
|
}
|
|
1362
|
-
.Button-
|
|
1602
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp {
|
|
1363
1603
|
border-width: 1px;
|
|
1364
1604
|
--tw-bg-opacity: 1;
|
|
1365
1605
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
@@ -1368,31 +1608,31 @@
|
|
|
1368
1608
|
border-color: rgb(207 34 49 / var(--tw-border-opacity, 1));
|
|
1369
1609
|
box-shadow: 0 1px 0 0 rgba(17, 24, 39, 0.1);
|
|
1370
1610
|
}
|
|
1371
|
-
.Button-
|
|
1611
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:active {
|
|
1372
1612
|
--tw-bg-opacity: 1;
|
|
1373
1613
|
background-color: rgb(207 34 49 / var(--tw-bg-opacity, 1));
|
|
1374
1614
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.1);
|
|
1375
1615
|
}
|
|
1376
|
-
.Button-
|
|
1616
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.ant-btn-primary:focus-visible {
|
|
1377
1617
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
1378
1618
|
}
|
|
1379
|
-
.Button-
|
|
1619
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd {
|
|
1380
1620
|
--tw-text-opacity: 1;
|
|
1381
1621
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1382
1622
|
}
|
|
1383
|
-
.Button-
|
|
1623
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_subtle___BMbbd:hover {
|
|
1384
1624
|
--tw-text-opacity: 1;
|
|
1385
1625
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1386
1626
|
}
|
|
1387
|
-
.Button-
|
|
1627
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9 {
|
|
1388
1628
|
--tw-text-opacity: 1;
|
|
1389
1629
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1390
1630
|
}
|
|
1391
|
-
.Button-
|
|
1631
|
+
.Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_text___Pc5Ia:hover, .Button-module__button___cLCyl.Button-module__type_critical___6ILOp.Button-module__variant_link___Cj1O9:hover {
|
|
1392
1632
|
--tw-text-opacity: 1;
|
|
1393
1633
|
color: rgb(207 34 49 / var(--tw-text-opacity, 1));
|
|
1394
1634
|
}
|
|
1395
|
-
.Button-
|
|
1635
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd {
|
|
1396
1636
|
--tw-bg-opacity: 1;
|
|
1397
1637
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1398
1638
|
border-width: 1px;
|
|
@@ -1401,34 +1641,34 @@
|
|
|
1401
1641
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
1402
1642
|
box-shadow: 0px 1px 0px 0px rgba(17, 24, 39, 0.1);
|
|
1403
1643
|
}
|
|
1404
|
-
.Button-
|
|
1644
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:hover {
|
|
1405
1645
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
1406
1646
|
--tw-border-opacity: 1;
|
|
1407
1647
|
border-color: rgb(211 216 223 / var(--tw-border-opacity, 1));
|
|
1408
1648
|
}
|
|
1409
|
-
.Button-
|
|
1649
|
+
.Button-module__button___cLCyl.Button-module__variant_subtle___BMbbd.ant-btn-default:focus-visible {
|
|
1410
1650
|
outline: 2px solid rgba(236, 93, 37, 0.3803921569);
|
|
1411
1651
|
}
|
|
1412
|
-
.Button-
|
|
1652
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia {
|
|
1413
1653
|
background-color: transparent;
|
|
1414
1654
|
border-width: 0px;
|
|
1415
1655
|
border-style: none;
|
|
1416
1656
|
box-shadow: none;
|
|
1417
1657
|
}
|
|
1418
|
-
.Button-
|
|
1658
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:hover {
|
|
1419
1659
|
box-shadow: 0px 2px 4px 0px rgba(17, 24, 39, 0.15);
|
|
1420
1660
|
border-style: none;
|
|
1421
1661
|
--tw-bg-opacity: 1;
|
|
1422
1662
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1423
1663
|
}
|
|
1424
|
-
.Button-
|
|
1664
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn-default:active {
|
|
1425
1665
|
--tw-bg-opacity: 1;
|
|
1426
1666
|
background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
|
|
1427
1667
|
}
|
|
1428
|
-
.Button-
|
|
1668
|
+
.Button-module__button___cLCyl.Button-module__variant_text___Pc5Ia.ant-btn:focus-visible {
|
|
1429
1669
|
outline: 2px solid rgba(236, 93, 37, 0.2);
|
|
1430
1670
|
}
|
|
1431
|
-
.Button-
|
|
1671
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9 {
|
|
1432
1672
|
background-color: transparent;
|
|
1433
1673
|
padding: 0px;
|
|
1434
1674
|
border-width: 0px;
|
|
@@ -1436,19 +1676,178 @@
|
|
|
1436
1676
|
height: auto;
|
|
1437
1677
|
box-shadow: none;
|
|
1438
1678
|
}
|
|
1439
|
-
.Button-
|
|
1679
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover.Button-module__onHoverUnderline___LOfXo {
|
|
1440
1680
|
text-decoration: underline;
|
|
1441
1681
|
}
|
|
1442
|
-
.Button-
|
|
1682
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:hover {
|
|
1443
1683
|
box-shadow: none;
|
|
1444
1684
|
border-style: none;
|
|
1445
1685
|
background-color: transparent;
|
|
1446
1686
|
}
|
|
1447
|
-
.Button-
|
|
1687
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn-default:active {
|
|
1448
1688
|
background-color: transparent;
|
|
1449
1689
|
}
|
|
1450
|
-
.Button-
|
|
1690
|
+
.Button-module__button___cLCyl.Button-module__variant_link___Cj1O9.ant-btn:focus-visible {
|
|
1451
1691
|
outline: none;
|
|
1452
1692
|
}
|
|
1453
1693
|
|
|
1694
|
+
/* src/atom/Switch/Switch.module.scss */
|
|
1695
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small {
|
|
1696
|
+
height: 0.75rem;
|
|
1697
|
+
min-width: 1.5rem
|
|
1698
|
+
}
|
|
1699
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-small .ant-switch-handle {
|
|
1700
|
+
height: 0.5rem;
|
|
1701
|
+
width: 0.5rem
|
|
1702
|
+
}
|
|
1703
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked {
|
|
1704
|
+
--tw-bg-opacity: 1;
|
|
1705
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
1706
|
+
}
|
|
1707
|
+
.Switch-module__switch___fUHZL.ant-switch.ant-switch-checked:hover {
|
|
1708
|
+
--tw-bg-opacity: 1;
|
|
1709
|
+
background-color: rgb(236 93 37 / var(--tw-bg-opacity, 1))
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
/* src/atom/Radio/Radio.module.scss */
|
|
1713
|
+
.Radio-module__radio___1CPAk {
|
|
1714
|
+
display: flex;
|
|
1715
|
+
align-items: center;
|
|
1716
|
+
}
|
|
1717
|
+
.Radio-module__radio___1CPAk.Radio-module__size_small___nRXgM .ant-radio .ant-radio-inner {
|
|
1718
|
+
height: 16px;
|
|
1719
|
+
width: 16px;
|
|
1720
|
+
}
|
|
1721
|
+
.Radio-module__radio___1CPAk.Radio-module__size_medium___uSzPl .ant-radio .ant-radio-inner {
|
|
1722
|
+
height: 20px;
|
|
1723
|
+
width: 20px;
|
|
1724
|
+
}
|
|
1725
|
+
.Radio-module__radio___1CPAk.Radio-module__size_large___ubpHs .ant-radio .ant-radio-inner {
|
|
1726
|
+
height: 24px;
|
|
1727
|
+
width: 24px;
|
|
1728
|
+
}
|
|
1729
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked .ant-radio-inner {
|
|
1730
|
+
border-color: #EC5D25;
|
|
1731
|
+
background-color: #EC5D25;
|
|
1732
|
+
}
|
|
1733
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:hover .ant-radio-inner {
|
|
1734
|
+
border-color: #B94710;
|
|
1735
|
+
background-color: #B94710;
|
|
1736
|
+
}
|
|
1737
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu .ant-radio-checked:focus-visible {
|
|
1738
|
+
outline: 2px solid #0A65E7;
|
|
1739
|
+
}
|
|
1740
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z {
|
|
1741
|
+
cursor: not-allowed;
|
|
1742
|
+
}
|
|
1743
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner {
|
|
1744
|
+
border-color: #B6BAC3;
|
|
1745
|
+
background-color: #B6BAC3;
|
|
1746
|
+
}
|
|
1747
|
+
.Radio-module__radio___1CPAk.Radio-module__type_checked___BvPpu.Radio-module__disabled___AF98Z .ant-radio-checked .ant-radio-inner::after {
|
|
1748
|
+
transform: scale(0.375);
|
|
1749
|
+
background-color: #FFFFFF;
|
|
1750
|
+
}
|
|
1751
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio .ant-radio-inner {
|
|
1752
|
+
border-color: #B6BAC3;
|
|
1753
|
+
}
|
|
1754
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:hover .ant-radio-inner {
|
|
1755
|
+
border-color: #6B7280;
|
|
1756
|
+
}
|
|
1757
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7 .ant-radio:focus-visible {
|
|
1758
|
+
outline: 2px solid #0A65E7;
|
|
1759
|
+
}
|
|
1760
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z {
|
|
1761
|
+
cursor: not-allowed;
|
|
1762
|
+
}
|
|
1763
|
+
.Radio-module__radio___1CPAk.Radio-module__type_unchecked___Xrb-7.Radio-module__disabled___AF98Z .ant-radio .ant-radio-inner {
|
|
1764
|
+
border-color: #B6BAC3;
|
|
1765
|
+
background-color: #F9FAFB;
|
|
1766
|
+
}
|
|
1767
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_normal___FQkTC {
|
|
1768
|
+
color: #363E4F;
|
|
1769
|
+
font-weight: 400;
|
|
1770
|
+
font-size: 0.875rem;
|
|
1771
|
+
line-height: 20px;
|
|
1772
|
+
}
|
|
1773
|
+
.Radio-module__radio___1CPAk.Radio-module__variant_emphasized___Fgpv6 {
|
|
1774
|
+
color: #363E4F;
|
|
1775
|
+
font-weight: 500;
|
|
1776
|
+
font-size: 0.875rem;
|
|
1777
|
+
line-height: 20px;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
/* src/atom/Modal/Modal.module.scss */
|
|
1781
|
+
.Modal-module__modal___PKrAi.Modal-module__footerMargintopDisable___4B6u- .Modal-module__ant-modal-footer___HKsDR {
|
|
1782
|
+
margin-top: 0;
|
|
1783
|
+
margin-top: 0px;
|
|
1784
|
+
}
|
|
1785
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter {
|
|
1786
|
+
padding: 24px;
|
|
1787
|
+
padding: 1.5rem;
|
|
1788
|
+
display: flex;
|
|
1789
|
+
justify-content: flex-end;
|
|
1790
|
+
}
|
|
1791
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__okBtn___Ut8e5,
|
|
1792
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .primaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
1793
|
+
min-width: 92px;
|
|
1794
|
+
}
|
|
1795
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter {
|
|
1796
|
+
padding: 24px;
|
|
1797
|
+
padding: 1.5rem;
|
|
1798
|
+
padding-top: 0px;
|
|
1799
|
+
display: flex;
|
|
1800
|
+
justify-content: flex-end;
|
|
1801
|
+
}
|
|
1802
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__okBtn___Ut8e5,
|
|
1803
|
+
.Modal-module__modal___PKrAi .ant-modal-footer .secondaryFooter .Modal-module__cancelBtn___i0Rm8 {
|
|
1804
|
+
width: 50%;
|
|
1805
|
+
}
|
|
1806
|
+
.Modal-module__modal___PKrAi .ant-modal-content {
|
|
1807
|
+
padding: 0;
|
|
1808
|
+
border-radius: 0.75rem;
|
|
1809
|
+
padding: 0px;
|
|
1810
|
+
}
|
|
1811
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
1812
|
+
margin-bottom: 0px;
|
|
1813
|
+
padding: 1rem;
|
|
1814
|
+
}
|
|
1815
|
+
@media (min-width: 576px) {
|
|
1816
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header {
|
|
1817
|
+
padding: 1.5rem;
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
1821
|
+
justify-content: flex-start;
|
|
1822
|
+
padding-right: 1.25rem;
|
|
1823
|
+
font-size: 1.25rem;
|
|
1824
|
+
font-weight: 500;
|
|
1825
|
+
line-height: 1.75rem;
|
|
1826
|
+
--tw-text-opacity: 1;
|
|
1827
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1828
|
+
}
|
|
1829
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
1830
|
+
display: flex;
|
|
1831
|
+
align-items: flex-end;
|
|
1832
|
+
justify-content: center;
|
|
1833
|
+
}
|
|
1834
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close .ant-modal-close-x {
|
|
1835
|
+
display: flex;
|
|
1836
|
+
align-items: center;
|
|
1837
|
+
justify-content: center;
|
|
1838
|
+
}
|
|
1839
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-body {
|
|
1840
|
+
padding: 0 1.5rem 1.5rem;
|
|
1841
|
+
max-height: 80vh;
|
|
1842
|
+
overflow: auto;
|
|
1843
|
+
}
|
|
1844
|
+
.Modal-module__modal___PKrAi .ant-modal-content .ant-modal-close {
|
|
1845
|
+
top: 1.5rem;
|
|
1846
|
+
right: 1.5rem;
|
|
1847
|
+
padding-bottom: 0.25rem;
|
|
1848
|
+
}
|
|
1849
|
+
.Modal-module__modal___PKrAi .ant-btn-primary {
|
|
1850
|
+
margin-inline-start: 0.5rem;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1454
1853
|
/* CSS Modules */
|