@digi-frontend/dgate-api-documentation 1.4.96 → 2.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/README.md +333 -0
- package/dist/index.cjs +983 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +793 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +792 -6
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +955 -32
- package/dist/index.js.map +1 -1
- package/package.json +53 -69
- package/dist/index.css +0 -5
- package/dist/index.css.map +0 -1
- package/dist/index.d.mts +0 -7
- package/dist/index.mjs +0 -11
- package/dist/index.mjs.map +0 -1
- package/src/components/Chips/style.scss +0 -147
- package/src/components/InfoForm/InfoForm.module.scss +0 -165
- package/src/components/JsonInput/style.module.scss +0 -133
- package/src/components/LivePreview/LivePreview.module.scss +0 -181
- package/src/components/MethodAccordion/MethodAccordion.module.scss +0 -399
- package/src/components/SectionHead/SectionHead.scss +0 -29
- package/src/components/SimpleLabelValue/style.scss +0 -30
- package/src/components/Tooltip/Tooltip.scss +0 -133
- package/src/components/_global.scss +0 -338
- package/src/components/dialog/style.scss +0 -188
- package/src/components/table/style.scss +0 -223
- package/src/layout/docsComponents/Codebox/style.module.scss +0 -43
- package/src/layout/docsComponents/DocsAside/style.module.scss +0 -113
- package/src/layout/docsComponents/DocsContent/EndpointPage/style.scss +0 -382
- package/src/layout/docsComponents/DocsContent/OverviewPage/style.scss +0 -332
- package/src/layout/docsComponents/DocsContent/style.scss +0 -0
- package/src/layout/docsComponents/DocsHeader/DocsHeader.module.scss +0 -297
- package/src/layout/docsComponents/DocsSideMenuTree/style.scss +0 -202
- package/src/layout/docsComponents/index.scss +0 -49
- package/src/test.scss +0 -3
|
@@ -1,338 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
//---------- Gradient colors ----------\\
|
|
3
|
-
|
|
4
|
-
--white: #fff;
|
|
5
|
-
--Gray-5: #f1f2f6;
|
|
6
|
-
--Gray-10: #ebecf2;
|
|
7
|
-
--Gray-20: #d8dae5;
|
|
8
|
-
--Gray-30: #babdcc;
|
|
9
|
-
--Gray-40: #9a9eb2;
|
|
10
|
-
--Gray-50: #828699;
|
|
11
|
-
--Gray-60: #696c80;
|
|
12
|
-
// TODO: will remove unused colors
|
|
13
|
-
// --Gray-70: #515466;
|
|
14
|
-
// --Gray-80: #3a3d4d;
|
|
15
|
-
// --Gray-90: #252833;
|
|
16
|
-
// --Gray-95: #4d4d4d;
|
|
17
|
-
--Gray-100: #12131a;
|
|
18
|
-
--black: #000;
|
|
19
|
-
|
|
20
|
-
// Primary color
|
|
21
|
-
|
|
22
|
-
--primary-static: #4d75d8;
|
|
23
|
-
--primary-hover: #7c9bea;
|
|
24
|
-
--primary-active: #2c4fa4;
|
|
25
|
-
--primary-disabled: #9a9eb2;
|
|
26
|
-
|
|
27
|
-
//--------------------\\
|
|
28
|
-
|
|
29
|
-
// Secondary color
|
|
30
|
-
|
|
31
|
-
--secondary-static: #40e0d0;
|
|
32
|
-
--secondary-hover: #9efcf2;
|
|
33
|
-
--secondary-active: #2fa599;
|
|
34
|
-
|
|
35
|
-
//--------------------\\
|
|
36
|
-
|
|
37
|
-
// Error color
|
|
38
|
-
|
|
39
|
-
--error-static: #da3f3f; // #da3f3f
|
|
40
|
-
--error-hover: #e75d5d; // #e75d5d
|
|
41
|
-
--error-active: #bb3232; // #bb3232
|
|
42
|
-
|
|
43
|
-
//--------------------\\
|
|
44
|
-
|
|
45
|
-
// Success color
|
|
46
|
-
|
|
47
|
-
--success-static: #3aaa35;
|
|
48
|
-
--success-hover: #5cda56;
|
|
49
|
-
--success-active: #2a8a25;
|
|
50
|
-
|
|
51
|
-
//--------------------\\
|
|
52
|
-
|
|
53
|
-
// Info color
|
|
54
|
-
|
|
55
|
-
--info-static: #c6c6c6;
|
|
56
|
-
--info-hover: #e4e4e4;
|
|
57
|
-
--info-active: #979797;
|
|
58
|
-
|
|
59
|
-
//--------------------\\
|
|
60
|
-
|
|
61
|
-
// Warning color
|
|
62
|
-
|
|
63
|
-
--warning-static: #faad14;
|
|
64
|
-
--warning-hover: #f9be4a;
|
|
65
|
-
--warning-active: #db9711;
|
|
66
|
-
|
|
67
|
-
//--------------------\\
|
|
68
|
-
|
|
69
|
-
// Action color
|
|
70
|
-
|
|
71
|
-
--action-static: #142452;
|
|
72
|
-
--action-hover: #21387d;
|
|
73
|
-
--action-active: #000000;
|
|
74
|
-
|
|
75
|
-
--color-info-primary: #3a6cd1;
|
|
76
|
-
|
|
77
|
-
//<<<<<<<<<<<<<<<<()>>>>>>>>>>>>>>>>\\
|
|
78
|
-
|
|
79
|
-
//---------- Font colors ----------\\
|
|
80
|
-
|
|
81
|
-
--primary-font-color: #142452;
|
|
82
|
-
--placeholder-font-color: #babdcc;
|
|
83
|
-
--warning-font-color: #ce2828;
|
|
84
|
-
|
|
85
|
-
//<<<<<<<<<<<<<<<<()>>>>>>>>>>>>>>>>\\
|
|
86
|
-
|
|
87
|
-
//---------- Component based colors ----------\\
|
|
88
|
-
|
|
89
|
-
// Alert component Colors
|
|
90
|
-
|
|
91
|
-
--alert-error: #da3f3f;
|
|
92
|
-
--alert-light-error: #f4c5c5;
|
|
93
|
-
--alert-success: #3aaa35;
|
|
94
|
-
--alert-light-success: #c4e5c2;
|
|
95
|
-
--alert-info: #8eaaf1;
|
|
96
|
-
--alert-light-info: #c4d3f1;
|
|
97
|
-
--alert-warning: #faad14;
|
|
98
|
-
--alert-light-warning: #fde6b8;
|
|
99
|
-
|
|
100
|
-
// Simple Collapse component colors
|
|
101
|
-
--border-focus: #3a6cd1;
|
|
102
|
-
|
|
103
|
-
// Tooltip component colors
|
|
104
|
-
--tooltip-background-color: #202f5b;
|
|
105
|
-
|
|
106
|
-
//---------- General status colors ----------\\
|
|
107
|
-
|
|
108
|
-
//******************************************************************
|
|
109
|
-
|
|
110
|
-
--text-color-primary: #142452;
|
|
111
|
-
--text-color-secondary: #ffff;
|
|
112
|
-
--text-color-neutral: #828699;
|
|
113
|
-
--text-color-tertiary: #808080;
|
|
114
|
-
--text-color-note: #242424;
|
|
115
|
-
--text-color-quaternary: #142452;
|
|
116
|
-
--text-color-disabled: #ffff;
|
|
117
|
-
|
|
118
|
-
--background-color-white-primary: #fff;
|
|
119
|
-
--background-color-light-primary: #8eaaf1;
|
|
120
|
-
--background-color-white-secondary: #fff;
|
|
121
|
-
--background-color-primary-dark: #142452;
|
|
122
|
-
--background-color-gray-5: #f1f2f6;
|
|
123
|
-
--background-color-gray-30: #ebecf2;
|
|
124
|
-
--background-color-tertiary-light: #2c4fa4;
|
|
125
|
-
--background-color-gray-10: #f1f2f6;
|
|
126
|
-
--background-color-gray-40: #ebecf2;
|
|
127
|
-
--background-color-light-blue: #dfe7f8; // dark mode
|
|
128
|
-
|
|
129
|
-
--border-color-primary: #babdcc;
|
|
130
|
-
--border-color-secondary: #d8dae5;
|
|
131
|
-
--border-color-neutral: #ebecf2;
|
|
132
|
-
--border-color-tertiary: #ebecf2;
|
|
133
|
-
--border-color-gray: #ebecf2;
|
|
134
|
-
--border-color-hover: #142452;
|
|
135
|
-
--border-color-active: #3a6cd1;
|
|
136
|
-
|
|
137
|
-
--icon-color-main: #142452;
|
|
138
|
-
--icon-color-secondary: #000;
|
|
139
|
-
--icon-color-quaternary: #babdcc;
|
|
140
|
-
--icon-color-disabled: #9a9eb2;
|
|
141
|
-
--link-btn-primary-color: #3a6cd1;
|
|
142
|
-
--button-color-static: #4d75d8;
|
|
143
|
-
--button-color-hover: #7c9bea;
|
|
144
|
-
--button-color-active: #2c4fa4;
|
|
145
|
-
|
|
146
|
-
--alert-natural: #c4d3f1;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
//----------------------------------------------Arena Components Colors--------------------------------//
|
|
150
|
-
//---------- Gradient colors ----------\\
|
|
151
|
-
|
|
152
|
-
$white: #fff;
|
|
153
|
-
$Gray-5: #f1f2f6;
|
|
154
|
-
$Gray-10: #ebecf2;
|
|
155
|
-
$Gray-20: #d8dae5;
|
|
156
|
-
$Gray-30: #babdcc;
|
|
157
|
-
$Gray-40: #9a9eb2;
|
|
158
|
-
$Gray-50: #828699;
|
|
159
|
-
$Gray-60: #696c80;
|
|
160
|
-
$Gray-70: #515466;
|
|
161
|
-
$Gray-80: #3a3d4d;
|
|
162
|
-
$Gray-90: #252833;
|
|
163
|
-
$Gray-95: #4d4d4d;
|
|
164
|
-
$Gray-100: #12131a;
|
|
165
|
-
$black: #000;
|
|
166
|
-
|
|
167
|
-
// Function Colors Buttons & Navigations
|
|
168
|
-
|
|
169
|
-
// Primary color
|
|
170
|
-
|
|
171
|
-
$primary-static: var(--primary-static);
|
|
172
|
-
$primary-hover: var(--primary-hover);
|
|
173
|
-
$primary-active: var(--primary-active);
|
|
174
|
-
$primary-disabled: var(--primary-disabled);
|
|
175
|
-
|
|
176
|
-
//--------------------\\
|
|
177
|
-
|
|
178
|
-
// Secondary color
|
|
179
|
-
|
|
180
|
-
$secondary-static: var(--secondary-color-main);
|
|
181
|
-
$secondary-hover: var(--secondary-color-light);
|
|
182
|
-
$secondary-active: darken(#40e0d0, 10%);
|
|
183
|
-
|
|
184
|
-
//--------------------\\
|
|
185
|
-
|
|
186
|
-
// Error color
|
|
187
|
-
|
|
188
|
-
$error-static: var(--color-error);
|
|
189
|
-
$error-hover: var(--hover-error);
|
|
190
|
-
$error-active: var(--active-error);
|
|
191
|
-
|
|
192
|
-
//--------------------\\
|
|
193
|
-
|
|
194
|
-
// Success color
|
|
195
|
-
|
|
196
|
-
$success-static: var(--color-success);
|
|
197
|
-
$success-hover: var(--hover-success);
|
|
198
|
-
$success-active: var(--active-success);
|
|
199
|
-
|
|
200
|
-
//--------------------\\
|
|
201
|
-
|
|
202
|
-
// Info color
|
|
203
|
-
|
|
204
|
-
$info-static: #c6c6c6;
|
|
205
|
-
$info-hover: #e4e4e4;
|
|
206
|
-
$info-active: #979797;
|
|
207
|
-
|
|
208
|
-
//--------------------\\
|
|
209
|
-
|
|
210
|
-
// Warning color
|
|
211
|
-
|
|
212
|
-
$warning-static: var(--color-warning);
|
|
213
|
-
$warning-hover: var(--hover-warning);
|
|
214
|
-
$warning-active: var(--active-warning);
|
|
215
|
-
|
|
216
|
-
//--------------------\\
|
|
217
|
-
|
|
218
|
-
// Action color
|
|
219
|
-
|
|
220
|
-
$action-static: var(--btn-action-color);
|
|
221
|
-
$action-hover: var(--btn-action-hover);
|
|
222
|
-
$action-active: var(--btn-action-active);
|
|
223
|
-
|
|
224
|
-
//<<<<<<<<<<<<<<<<()>>>>>>>>>>>>>>>>\\
|
|
225
|
-
|
|
226
|
-
//---------- Font colors ----------\\
|
|
227
|
-
|
|
228
|
-
$primary-font-color: var(--text-color-primary);
|
|
229
|
-
$placeholder-font-color: #babdcc;
|
|
230
|
-
$disabled-font-color: #d8dae5;
|
|
231
|
-
$warning-font-color: #ce2828;
|
|
232
|
-
|
|
233
|
-
//<<<<<<<<<<<<<<<<()>>>>>>>>>>>>>>>>\\
|
|
234
|
-
|
|
235
|
-
//---------- Component based colors ----------\\
|
|
236
|
-
|
|
237
|
-
// Alert component Colors
|
|
238
|
-
|
|
239
|
-
$alert-error: var(--alert-error);
|
|
240
|
-
$alert-success: var(--alert-success);
|
|
241
|
-
$alert-info: var(--alert-info);
|
|
242
|
-
$alert-warning: var(--alert-warning);
|
|
243
|
-
$alert-general: var(--alert-general);
|
|
244
|
-
$alert-light-error: var(--alert-light-error);
|
|
245
|
-
$alert-light-warning: var(--alert-light-warning);
|
|
246
|
-
$alert-light-info: var(--alert-light-info);
|
|
247
|
-
$alert-light-success: var(--alert-light-success);
|
|
248
|
-
$alert-light-general: var(--alert-light-general);
|
|
249
|
-
|
|
250
|
-
// Chip component colors
|
|
251
|
-
|
|
252
|
-
$chip-blue: #4d75d8;
|
|
253
|
-
$chip-dark-blue: #142452;
|
|
254
|
-
$chip-gray: #9a9eb2;
|
|
255
|
-
$chip-light-gray: #ebecf2;
|
|
256
|
-
$chip-lighter-gray: #d8dae5;
|
|
257
|
-
$chip-black: #000;
|
|
258
|
-
$chip-light-gray-active: #696c80;
|
|
259
|
-
$color-info-primary: var(--color-info-primary);
|
|
260
|
-
|
|
261
|
-
// Chart component colors
|
|
262
|
-
|
|
263
|
-
$bar-tooltip: #ebecf2ff;
|
|
264
|
-
|
|
265
|
-
// Loader component colors
|
|
266
|
-
|
|
267
|
-
$loader-background: #ffffff00;
|
|
268
|
-
$loader-color: #0300b9;
|
|
269
|
-
|
|
270
|
-
// Tooltip component colors
|
|
271
|
-
|
|
272
|
-
$tooltip-background-color: #202f5b;
|
|
273
|
-
|
|
274
|
-
// Simple Collapse component colors
|
|
275
|
-
|
|
276
|
-
$simple-collapse-dropdown-background: rgba(235, 236, 242, 0.3);
|
|
277
|
-
|
|
278
|
-
//---------- General status colors ----------\\
|
|
279
|
-
|
|
280
|
-
//******************************************************************
|
|
281
|
-
|
|
282
|
-
$text-color-primary: var(--text-color-primary);
|
|
283
|
-
$text-color-secondary: var(--text-color-secondary);
|
|
284
|
-
$text-color-neutral: var(--text-color-neutral);
|
|
285
|
-
$text-color-tertiary: var(--text-color-tertiary);
|
|
286
|
-
$text-color-info: var(--text-color-info);
|
|
287
|
-
$text-color-note: var(--text-color-note);
|
|
288
|
-
$text-color-quaternary: var(--text-color-quaternary);
|
|
289
|
-
$text-color-success: var(--text-color-success);
|
|
290
|
-
$text-color-error: var(--text-color-error);
|
|
291
|
-
$text-color-warning: var(--text-color-warning);
|
|
292
|
-
$text-color-info: var(--text-color-info);
|
|
293
|
-
$text-color-success: var(--text-color-success);
|
|
294
|
-
$text-color-error: var(--text-color-error);
|
|
295
|
-
$text-color-warning: var(--text-color-warning);
|
|
296
|
-
$text-color-info: var(--text-color-info);
|
|
297
|
-
$text-color-disabled: var(--text-color-disabled);
|
|
298
|
-
$text-color-gray-dark: var(--text-color-gray-dark);
|
|
299
|
-
|
|
300
|
-
$background-color-white-primary: var(--background-color-white-primary);
|
|
301
|
-
$background-color-light-primary: var(--background-color-light-primary);
|
|
302
|
-
$background-color-white-tertiary: var(--background-color-white-tertiary);
|
|
303
|
-
$background-color-white-secondary: var(--background-color-white-secondary);
|
|
304
|
-
$background-color-primary-light: var(--background-color-primary-light);
|
|
305
|
-
$background-color-tertiary-dark: var(--background-color-tertiary-dark);
|
|
306
|
-
$background-color-gray-50: var(--background-color-gray-50);
|
|
307
|
-
$background-color-secondary-light: var(--background-color-secondary-light);
|
|
308
|
-
$background-color-white-tertiary: var(--background-color-gray-40);
|
|
309
|
-
$background-color-primary-dark: var(--background-color-primary-dark);
|
|
310
|
-
$background-color--secondary-dark: var(--background-color-10);
|
|
311
|
-
$background-color-gray-5: var(--background-color-gray-5);
|
|
312
|
-
$background-color-gray-20: var(--background-color-gray-20);
|
|
313
|
-
$background-color-black-primary: var(--background-color-black-primary);
|
|
314
|
-
$background-color-gray-30: var(--background-color-gray-30);
|
|
315
|
-
$background-color-tertiary-light: var(--background-color-tertiary-light);
|
|
316
|
-
$background-color-gray-10: var(--background-color-gray-10);
|
|
317
|
-
$background-color-gray-40: var(--background-color-gray-40);
|
|
318
|
-
$background-color-white-light: var(--background-color-white-light);
|
|
319
|
-
$background-color-gray-60: var(--background-color-gray-60);
|
|
320
|
-
|
|
321
|
-
$border-color-primary: var(--border-color-primary);
|
|
322
|
-
$border-color-secondary: var(--border-color-secondary);
|
|
323
|
-
$border-color-neutral: var(--border-color-neutral);
|
|
324
|
-
$border-color-tertiary: var(--border-color-tertiary);
|
|
325
|
-
$border-color-gray: var(--border-color-gray);
|
|
326
|
-
$border-color-hover: var(--border-color-hover);
|
|
327
|
-
$border-color-active: var(--border-color-active);
|
|
328
|
-
|
|
329
|
-
$icon-color-main: var(--icon-color-main);
|
|
330
|
-
$icon-color-secondary: var(--icon-color-secondary);
|
|
331
|
-
$icon-color-tertiary: var(--icon-color-tertiary);
|
|
332
|
-
$icon-color-quaternary: var(--icon-color-quaternary);
|
|
333
|
-
$icon-color-disabled: var(--icon-color-disabled);
|
|
334
|
-
$link-btn-primary-color: var(--link-btn-primary-color);
|
|
335
|
-
$button-color-static: var(--button-color-static);
|
|
336
|
-
$button-color-hover: var(--button-color-hover);
|
|
337
|
-
$button-color-active: var(--button-color-active);
|
|
338
|
-
|
|
@@ -1,188 +0,0 @@
|
|
|
1
|
-
#common-dialog {
|
|
2
|
-
&.dialog-content-wrapper {
|
|
3
|
-
overflow: visible !important;
|
|
4
|
-
max-height: 100%;
|
|
5
|
-
width: 22.1875rem;
|
|
6
|
-
|
|
7
|
-
.dialog-content-root {
|
|
8
|
-
overflow: visible !important;
|
|
9
|
-
border-radius: 0.625rem;
|
|
10
|
-
max-height: 100%;
|
|
11
|
-
|
|
12
|
-
.dialog-content {
|
|
13
|
-
padding: 0 1.875rem !important;
|
|
14
|
-
overflow: visible !important;
|
|
15
|
-
max-height: 100%;
|
|
16
|
-
|
|
17
|
-
.common-dialog {
|
|
18
|
-
position: relative;
|
|
19
|
-
|
|
20
|
-
.close-icon {
|
|
21
|
-
position: absolute;
|
|
22
|
-
z-index: 1;
|
|
23
|
-
top: 1.5rem;
|
|
24
|
-
right: 0;
|
|
25
|
-
transform: translate(0.625rem, -0.625rem);
|
|
26
|
-
cursor: pointer;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.confirmation-dialog-header {
|
|
30
|
-
display: flex;
|
|
31
|
-
padding-top: 0.5rem;
|
|
32
|
-
position: relative;
|
|
33
|
-
|
|
34
|
-
.icon {
|
|
35
|
-
margin-top: 1rem;
|
|
36
|
-
margin-bottom: 1.5rem;
|
|
37
|
-
margin-inline: auto;
|
|
38
|
-
|
|
39
|
-
&.info {
|
|
40
|
-
path {
|
|
41
|
-
stroke: #12131a;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
line {
|
|
45
|
-
stroke: #12131a;
|
|
46
|
-
|
|
47
|
-
& + path {
|
|
48
|
-
fill: #12131a;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&.warning {
|
|
54
|
-
path {
|
|
55
|
-
stroke: #faad14;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
line {
|
|
59
|
-
stroke: #faad14;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
&.error {
|
|
64
|
-
path {
|
|
65
|
-
stroke: #da3f3f;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
line {
|
|
69
|
-
stroke: #da3f3f;
|
|
70
|
-
|
|
71
|
-
& + path {
|
|
72
|
-
fill: #da3f3f;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.confirmation-title {
|
|
80
|
-
font-size: 1.5rem;
|
|
81
|
-
font-weight: 500;
|
|
82
|
-
line-height: 1.875rem;
|
|
83
|
-
text-align: center;
|
|
84
|
-
margin-bottom: 0.625rem;
|
|
85
|
-
|
|
86
|
-
&.error-title {
|
|
87
|
-
color: #da3f3f;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
&.warning-title {
|
|
91
|
-
color: #faad14;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.confirmation-dialog-footer {
|
|
96
|
-
display: flex;
|
|
97
|
-
gap: 1.25rem;
|
|
98
|
-
margin-top: 1.875rem;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
.common-dialog {
|
|
106
|
-
position: relative;
|
|
107
|
-
|
|
108
|
-
.close-icon {
|
|
109
|
-
position: absolute !important;
|
|
110
|
-
z-index: 1 !important;
|
|
111
|
-
top: 0.75rem !important;
|
|
112
|
-
right: 0.4rem !important;
|
|
113
|
-
transform: translate(0.625rem, -0.625rem) !important;
|
|
114
|
-
cursor: pointer !important;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.confirmation-dialog-header {
|
|
118
|
-
display: flex;
|
|
119
|
-
padding-top: 0.5rem;
|
|
120
|
-
position: relative;
|
|
121
|
-
|
|
122
|
-
.icon {
|
|
123
|
-
margin-top: 1rem;
|
|
124
|
-
margin-bottom: 1.5rem;
|
|
125
|
-
margin-inline: auto;
|
|
126
|
-
|
|
127
|
-
&.info {
|
|
128
|
-
path {
|
|
129
|
-
stroke: #12131a;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
line {
|
|
133
|
-
stroke: #12131a;
|
|
134
|
-
|
|
135
|
-
& + path {
|
|
136
|
-
fill: #12131a;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
&.warning {
|
|
142
|
-
path {
|
|
143
|
-
stroke: #faad14;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
line {
|
|
147
|
-
stroke: #faad14;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
&.error {
|
|
152
|
-
path {
|
|
153
|
-
stroke: #da3f3f;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
line {
|
|
157
|
-
stroke: #da3f3f;
|
|
158
|
-
|
|
159
|
-
& + path {
|
|
160
|
-
fill: #da3f3f;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.confirmation-title {
|
|
168
|
-
font-size: 1.5rem;
|
|
169
|
-
font-weight: 500;
|
|
170
|
-
line-height: 1.875rem;
|
|
171
|
-
text-align: center;
|
|
172
|
-
margin-bottom: 0.625rem;
|
|
173
|
-
|
|
174
|
-
&.error-title {
|
|
175
|
-
color: #da3f3f;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
&.warning-title {
|
|
179
|
-
color: #faad14;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.confirmation-dialog-footer {
|
|
184
|
-
display: flex;
|
|
185
|
-
gap: 1.25rem;
|
|
186
|
-
margin-top: 1.875rem;
|
|
187
|
-
}
|
|
188
|
-
}
|