@justifi/webcomponents 3.0.2 → 3.0.4

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/dist/cjs/justifi-billing-form_2.cjs.entry.js +13 -2
  3. package/dist/cjs/justifi-payment-form.cjs.entry.js +1 -1
  4. package/dist/cjs/justifi-payment-method-form.cjs.entry.js +1 -1
  5. package/dist/cjs/select-input_2.cjs.entry.js +2 -2
  6. package/dist/collection/components/billing-form/billing-form.css +69 -69
  7. package/dist/collection/components/billing-form/billing-form.js +27 -7
  8. package/dist/collection/components/payment-form/payment-form.css +69 -69
  9. package/dist/collection/components/payment-form/payment-method-selector.css +0 -405
  10. package/dist/collection/components/select-input/select-input.css +69 -69
  11. package/dist/collection/components/text-input/text-input.css +69 -69
  12. package/dist/components/billing-form.js +12 -1
  13. package/dist/components/justifi-payment-form.js +1 -1
  14. package/dist/components/payment-method-form.js +1 -1
  15. package/dist/components/payment-method-selector.js +1 -1
  16. package/dist/components/select-input2.js +1 -1
  17. package/dist/components/text-input2.js +1 -1
  18. package/dist/esm/justifi-billing-form_2.entry.js +13 -2
  19. package/dist/esm/justifi-payment-form.entry.js +1 -1
  20. package/dist/esm/justifi-payment-method-form.entry.js +1 -1
  21. package/dist/esm/select-input_2.entry.js +2 -2
  22. package/dist/types/components/billing-form/billing-form.d.ts +11 -0
  23. package/dist/types/components.d.ts +11 -0
  24. package/dist/webcomponents/p-0d4b4f19.entry.js +1 -0
  25. package/dist/webcomponents/{p-f3211155.entry.js → p-587697d6.entry.js} +1 -1
  26. package/dist/webcomponents/{p-284c1d6f.entry.js → p-defe7fd5.entry.js} +1 -1
  27. package/dist/webcomponents/{p-5301972d.entry.js → p-f2438424.entry.js} +1 -1
  28. package/dist/webcomponents/webcomponents.css +1 -1
  29. package/dist/webcomponents/webcomponents.esm.js +1 -1
  30. package/package.json +1 -1
  31. package/dist/webcomponents/p-b526ae5a.entry.js +0 -1
@@ -1,408 +1,3 @@
1
- *,
2
- *::before,
3
- *::after {
4
- box-sizing: border-box;
5
- }
6
-
7
- @media (prefers-reduced-motion: no-preference) {
8
- :root {
9
- scroll-behavior: smooth;
10
- }
11
- }
12
-
13
- body {
14
- margin: 0;
15
- font-family: var(--bs-body-font-family);
16
- font-size: var(--bs-body-font-size);
17
- font-weight: var(--bs-body-font-weight);
18
- line-height: var(--bs-body-line-height);
19
- color: var(--bs-body-color);
20
- text-align: var(--bs-body-text-align);
21
- background-color: var(--bs-body-bg);
22
- -webkit-text-size-adjust: 100%;
23
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
24
- }
25
-
26
- hr {
27
- margin: 1rem 0;
28
- color: inherit;
29
- border: 0;
30
- border-top: 1px solid;
31
- opacity: 0.25;
32
- }
33
-
34
- h6, h5, h4, h3, h2, h1 {
35
- margin-top: 0;
36
- margin-bottom: 0.5rem;
37
- font-weight: 500;
38
- line-height: 1.2;
39
- }
40
-
41
- h1 {
42
- font-size: calc(1.375rem + 1.5vw);
43
- }
44
- @media (min-width: 1200px) {
45
- h1 {
46
- font-size: 2.5rem;
47
- }
48
- }
49
-
50
- h2 {
51
- font-size: calc(1.325rem + 0.9vw);
52
- }
53
- @media (min-width: 1200px) {
54
- h2 {
55
- font-size: 2rem;
56
- }
57
- }
58
-
59
- h3 {
60
- font-size: calc(1.3rem + 0.6vw);
61
- }
62
- @media (min-width: 1200px) {
63
- h3 {
64
- font-size: 1.75rem;
65
- }
66
- }
67
-
68
- h4 {
69
- font-size: calc(1.275rem + 0.3vw);
70
- }
71
- @media (min-width: 1200px) {
72
- h4 {
73
- font-size: 1.5rem;
74
- }
75
- }
76
-
77
- h5 {
78
- font-size: 1.25rem;
79
- }
80
-
81
- h6 {
82
- font-size: 1rem;
83
- }
84
-
85
- p {
86
- margin-top: 0;
87
- margin-bottom: 1rem;
88
- }
89
-
90
- abbr[title] {
91
- text-decoration: underline dotted;
92
- cursor: help;
93
- text-decoration-skip-ink: none;
94
- }
95
-
96
- address {
97
- margin-bottom: 1rem;
98
- font-style: normal;
99
- line-height: inherit;
100
- }
101
-
102
- ol,
103
- ul {
104
- padding-left: 2rem;
105
- }
106
-
107
- ol,
108
- ul,
109
- dl {
110
- margin-top: 0;
111
- margin-bottom: 1rem;
112
- }
113
-
114
- ol ol,
115
- ul ul,
116
- ol ul,
117
- ul ol {
118
- margin-bottom: 0;
119
- }
120
-
121
- dt {
122
- font-weight: 700;
123
- }
124
-
125
- dd {
126
- margin-bottom: 0.5rem;
127
- margin-left: 0;
128
- }
129
-
130
- blockquote {
131
- margin: 0 0 1rem;
132
- }
133
-
134
- b,
135
- strong {
136
- font-weight: bolder;
137
- }
138
-
139
- small {
140
- font-size: 0.875em;
141
- }
142
-
143
- mark {
144
- padding: 0.1875em;
145
- background-color: var(--bs-highlight-bg);
146
- }
147
-
148
- sub,
149
- sup {
150
- position: relative;
151
- font-size: 0.75em;
152
- line-height: 0;
153
- vertical-align: baseline;
154
- }
155
-
156
- sub {
157
- bottom: -0.25em;
158
- }
159
-
160
- sup {
161
- top: -0.5em;
162
- }
163
-
164
- a {
165
- color: var(--bs-link-color);
166
- text-decoration: underline;
167
- }
168
- a:hover {
169
- color: var(--bs-link-hover-color);
170
- }
171
-
172
- a:not([href]):not([class]), a:not([href]):not([class]):hover {
173
- color: inherit;
174
- text-decoration: none;
175
- }
176
-
177
- pre,
178
- code,
179
- kbd,
180
- samp {
181
- font-family: var(--bs-font-monospace);
182
- font-size: 1em;
183
- }
184
-
185
- pre {
186
- display: block;
187
- margin-top: 0;
188
- margin-bottom: 1rem;
189
- overflow: auto;
190
- font-size: 0.875em;
191
- }
192
- pre code {
193
- font-size: inherit;
194
- color: inherit;
195
- word-break: normal;
196
- }
197
-
198
- code {
199
- font-size: 0.875em;
200
- color: var(--bs-code-color);
201
- word-wrap: break-word;
202
- }
203
- a > code {
204
- color: inherit;
205
- }
206
-
207
- kbd {
208
- padding: 0.1875rem 0.375rem;
209
- font-size: 0.875em;
210
- color: var(--bs-body-bg);
211
- background-color: var(--bs-body-color);
212
- border-radius: 0.25rem;
213
- }
214
- kbd kbd {
215
- padding: 0;
216
- font-size: 1em;
217
- }
218
-
219
- figure {
220
- margin: 0 0 1rem;
221
- }
222
-
223
- img,
224
- svg {
225
- vertical-align: middle;
226
- }
227
-
228
- table {
229
- caption-side: bottom;
230
- border-collapse: collapse;
231
- }
232
-
233
- caption {
234
- padding-top: 0.5rem;
235
- padding-bottom: 0.5rem;
236
- color: #6c757d;
237
- text-align: left;
238
- }
239
-
240
- th {
241
- text-align: inherit;
242
- text-align: -webkit-match-parent;
243
- }
244
-
245
- thead,
246
- tbody,
247
- tfoot,
248
- tr,
249
- td,
250
- th {
251
- border-color: inherit;
252
- border-style: solid;
253
- border-width: 0;
254
- }
255
-
256
- label {
257
- display: inline-block;
258
- }
259
-
260
- button {
261
- border-radius: 0;
262
- }
263
-
264
- button:focus:not(:focus-visible) {
265
- outline: 0;
266
- }
267
-
268
- input,
269
- button,
270
- select,
271
- optgroup,
272
- textarea {
273
- margin: 0;
274
- font-family: inherit;
275
- font-size: inherit;
276
- line-height: inherit;
277
- }
278
-
279
- button,
280
- select {
281
- text-transform: none;
282
- }
283
-
284
- [role=button] {
285
- cursor: pointer;
286
- }
287
-
288
- select {
289
- word-wrap: normal;
290
- }
291
- select:disabled {
292
- opacity: 1;
293
- }
294
-
295
- [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
296
- display: none !important;
297
- }
298
-
299
- button,
300
- [type=button],
301
- [type=reset],
302
- [type=submit] {
303
- -webkit-appearance: button;
304
- }
305
- button:not(:disabled),
306
- [type=button]:not(:disabled),
307
- [type=reset]:not(:disabled),
308
- [type=submit]:not(:disabled) {
309
- cursor: pointer;
310
- }
311
-
312
- ::-moz-focus-inner {
313
- padding: 0;
314
- border-style: none;
315
- }
316
-
317
- textarea {
318
- resize: vertical;
319
- }
320
-
321
- fieldset {
322
- min-width: 0;
323
- padding: 0;
324
- margin: 0;
325
- border: 0;
326
- }
327
-
328
- legend {
329
- float: left;
330
- width: 100%;
331
- padding: 0;
332
- margin-bottom: 0.5rem;
333
- font-size: calc(1.275rem + 0.3vw);
334
- line-height: inherit;
335
- }
336
- @media (min-width: 1200px) {
337
- legend {
338
- font-size: 1.5rem;
339
- }
340
- }
341
- legend + * {
342
- clear: left;
343
- }
344
-
345
- ::-webkit-datetime-edit-fields-wrapper,
346
- ::-webkit-datetime-edit-text,
347
- ::-webkit-datetime-edit-minute,
348
- ::-webkit-datetime-edit-hour-field,
349
- ::-webkit-datetime-edit-day-field,
350
- ::-webkit-datetime-edit-month-field,
351
- ::-webkit-datetime-edit-year-field {
352
- padding: 0;
353
- }
354
-
355
- ::-webkit-inner-spin-button {
356
- height: auto;
357
- }
358
-
359
- [type=search] {
360
- outline-offset: -2px;
361
- -webkit-appearance: textfield;
362
- }
363
-
364
- /* rtl:raw:
365
- [type="tel"],
366
- [type="url"],
367
- [type="email"],
368
- [type="number"] {
369
- direction: ltr;
370
- }
371
- */
372
- ::-webkit-search-decoration {
373
- -webkit-appearance: none;
374
- }
375
-
376
- ::-webkit-color-swatch-wrapper {
377
- padding: 0;
378
- }
379
-
380
- ::file-selector-button {
381
- font: inherit;
382
- -webkit-appearance: button;
383
- }
384
-
385
- output {
386
- display: inline-block;
387
- }
388
-
389
- iframe {
390
- border: 0;
391
- }
392
-
393
- summary {
394
- display: list-item;
395
- cursor: pointer;
396
- }
397
-
398
- progress {
399
- vertical-align: baseline;
400
- }
401
-
402
- [hidden] {
403
- display: none !important;
404
- }
405
-
406
1
  :root {
407
2
  --bs-blue: #0d6efd;
408
3
  --bs-indigo: #6610f2;
@@ -1,3 +1,72 @@
1
+ :root {
2
+ --bs-blue: #0d6efd;
3
+ --bs-indigo: #6610f2;
4
+ --bs-purple: #6f42c1;
5
+ --bs-pink: #d63384;
6
+ --bs-red: #dc3545;
7
+ --bs-orange: #fd7e14;
8
+ --bs-yellow: #ffc107;
9
+ --bs-green: #198754;
10
+ --bs-teal: #20c997;
11
+ --bs-cyan: #0dcaf0;
12
+ --bs-black: #000;
13
+ --bs-white: #fff;
14
+ --bs-gray: #6c757d;
15
+ --bs-gray-dark: #343a40;
16
+ --bs-gray-100: #f8f9fa;
17
+ --bs-gray-200: #e9ecef;
18
+ --bs-gray-300: #dee2e6;
19
+ --bs-gray-400: #ced4da;
20
+ --bs-gray-500: #adb5bd;
21
+ --bs-gray-600: #6c757d;
22
+ --bs-gray-700: #495057;
23
+ --bs-gray-800: #343a40;
24
+ --bs-gray-900: #212529;
25
+ --bs-primary: #0d6efd;
26
+ --bs-secondary: #6c757d;
27
+ --bs-success: #198754;
28
+ --bs-info: #0dcaf0;
29
+ --bs-warning: #ffc107;
30
+ --bs-danger: #dc3545;
31
+ --bs-light: #f8f9fa;
32
+ --bs-dark: #212529;
33
+ --bs-primary-rgb: 13, 110, 253;
34
+ --bs-secondary-rgb: 108, 117, 125;
35
+ --bs-success-rgb: 25, 135, 84;
36
+ --bs-info-rgb: 13, 202, 240;
37
+ --bs-warning-rgb: 255, 193, 7;
38
+ --bs-danger-rgb: 220, 53, 69;
39
+ --bs-light-rgb: 248, 249, 250;
40
+ --bs-dark-rgb: 33, 37, 41;
41
+ --bs-white-rgb: 255, 255, 255;
42
+ --bs-black-rgb: 0, 0, 0;
43
+ --bs-body-color-rgb: 33, 37, 41;
44
+ --bs-body-bg-rgb: 255, 255, 255;
45
+ --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
46
+ --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
47
+ --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
48
+ --bs-body-font-family: var(--bs-font-sans-serif);
49
+ --bs-body-font-size: 1rem;
50
+ --bs-body-font-weight: 400;
51
+ --bs-body-line-height: 1.5;
52
+ --bs-body-color: #212529;
53
+ --bs-body-bg: #fff;
54
+ --bs-border-width: 1px;
55
+ --bs-border-style: solid;
56
+ --bs-border-color: #dee2e6;
57
+ --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
58
+ --bs-border-radius: 0.375rem;
59
+ --bs-border-radius-sm: 0.25rem;
60
+ --bs-border-radius-lg: 0.5rem;
61
+ --bs-border-radius-xl: 1rem;
62
+ --bs-border-radius-2xl: 2rem;
63
+ --bs-border-radius-pill: 50rem;
64
+ --bs-link-color: #0d6efd;
65
+ --bs-link-hover-color: #0a58ca;
66
+ --bs-code-color: #d63384;
67
+ --bs-highlight-bg: #fff3cd;
68
+ }
69
+
1
70
  *,
2
71
  *::before,
3
72
  *::after {
@@ -403,75 +472,6 @@ progress {
403
472
  display: none !important;
404
473
  }
405
474
 
406
- :root {
407
- --bs-blue: #0d6efd;
408
- --bs-indigo: #6610f2;
409
- --bs-purple: #6f42c1;
410
- --bs-pink: #d63384;
411
- --bs-red: #dc3545;
412
- --bs-orange: #fd7e14;
413
- --bs-yellow: #ffc107;
414
- --bs-green: #198754;
415
- --bs-teal: #20c997;
416
- --bs-cyan: #0dcaf0;
417
- --bs-black: #000;
418
- --bs-white: #fff;
419
- --bs-gray: #6c757d;
420
- --bs-gray-dark: #343a40;
421
- --bs-gray-100: #f8f9fa;
422
- --bs-gray-200: #e9ecef;
423
- --bs-gray-300: #dee2e6;
424
- --bs-gray-400: #ced4da;
425
- --bs-gray-500: #adb5bd;
426
- --bs-gray-600: #6c757d;
427
- --bs-gray-700: #495057;
428
- --bs-gray-800: #343a40;
429
- --bs-gray-900: #212529;
430
- --bs-primary: #0d6efd;
431
- --bs-secondary: #6c757d;
432
- --bs-success: #198754;
433
- --bs-info: #0dcaf0;
434
- --bs-warning: #ffc107;
435
- --bs-danger: #dc3545;
436
- --bs-light: #f8f9fa;
437
- --bs-dark: #212529;
438
- --bs-primary-rgb: 13, 110, 253;
439
- --bs-secondary-rgb: 108, 117, 125;
440
- --bs-success-rgb: 25, 135, 84;
441
- --bs-info-rgb: 13, 202, 240;
442
- --bs-warning-rgb: 255, 193, 7;
443
- --bs-danger-rgb: 220, 53, 69;
444
- --bs-light-rgb: 248, 249, 250;
445
- --bs-dark-rgb: 33, 37, 41;
446
- --bs-white-rgb: 255, 255, 255;
447
- --bs-black-rgb: 0, 0, 0;
448
- --bs-body-color-rgb: 33, 37, 41;
449
- --bs-body-bg-rgb: 255, 255, 255;
450
- --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
451
- --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
452
- --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
453
- --bs-body-font-family: var(--bs-font-sans-serif);
454
- --bs-body-font-size: 1rem;
455
- --bs-body-font-weight: 400;
456
- --bs-body-line-height: 1.5;
457
- --bs-body-color: #212529;
458
- --bs-body-bg: #fff;
459
- --bs-border-width: 1px;
460
- --bs-border-style: solid;
461
- --bs-border-color: #dee2e6;
462
- --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
463
- --bs-border-radius: 0.375rem;
464
- --bs-border-radius-sm: 0.25rem;
465
- --bs-border-radius-lg: 0.5rem;
466
- --bs-border-radius-xl: 1rem;
467
- --bs-border-radius-2xl: 2rem;
468
- --bs-border-radius-pill: 50rem;
469
- --bs-link-color: #0d6efd;
470
- --bs-link-hover-color: #0a58ca;
471
- --bs-code-color: #d63384;
472
- --bs-highlight-bg: #fff3cd;
473
- }
474
-
475
475
  .form-label {
476
476
  margin-bottom: 0.5rem;
477
477
  }
@@ -1,3 +1,72 @@
1
+ :root {
2
+ --bs-blue: #0d6efd;
3
+ --bs-indigo: #6610f2;
4
+ --bs-purple: #6f42c1;
5
+ --bs-pink: #d63384;
6
+ --bs-red: #dc3545;
7
+ --bs-orange: #fd7e14;
8
+ --bs-yellow: #ffc107;
9
+ --bs-green: #198754;
10
+ --bs-teal: #20c997;
11
+ --bs-cyan: #0dcaf0;
12
+ --bs-black: #000;
13
+ --bs-white: #fff;
14
+ --bs-gray: #6c757d;
15
+ --bs-gray-dark: #343a40;
16
+ --bs-gray-100: #f8f9fa;
17
+ --bs-gray-200: #e9ecef;
18
+ --bs-gray-300: #dee2e6;
19
+ --bs-gray-400: #ced4da;
20
+ --bs-gray-500: #adb5bd;
21
+ --bs-gray-600: #6c757d;
22
+ --bs-gray-700: #495057;
23
+ --bs-gray-800: #343a40;
24
+ --bs-gray-900: #212529;
25
+ --bs-primary: #0d6efd;
26
+ --bs-secondary: #6c757d;
27
+ --bs-success: #198754;
28
+ --bs-info: #0dcaf0;
29
+ --bs-warning: #ffc107;
30
+ --bs-danger: #dc3545;
31
+ --bs-light: #f8f9fa;
32
+ --bs-dark: #212529;
33
+ --bs-primary-rgb: 13, 110, 253;
34
+ --bs-secondary-rgb: 108, 117, 125;
35
+ --bs-success-rgb: 25, 135, 84;
36
+ --bs-info-rgb: 13, 202, 240;
37
+ --bs-warning-rgb: 255, 193, 7;
38
+ --bs-danger-rgb: 220, 53, 69;
39
+ --bs-light-rgb: 248, 249, 250;
40
+ --bs-dark-rgb: 33, 37, 41;
41
+ --bs-white-rgb: 255, 255, 255;
42
+ --bs-black-rgb: 0, 0, 0;
43
+ --bs-body-color-rgb: 33, 37, 41;
44
+ --bs-body-bg-rgb: 255, 255, 255;
45
+ --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
46
+ --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
47
+ --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
48
+ --bs-body-font-family: var(--bs-font-sans-serif);
49
+ --bs-body-font-size: 1rem;
50
+ --bs-body-font-weight: 400;
51
+ --bs-body-line-height: 1.5;
52
+ --bs-body-color: #212529;
53
+ --bs-body-bg: #fff;
54
+ --bs-border-width: 1px;
55
+ --bs-border-style: solid;
56
+ --bs-border-color: #dee2e6;
57
+ --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
58
+ --bs-border-radius: 0.375rem;
59
+ --bs-border-radius-sm: 0.25rem;
60
+ --bs-border-radius-lg: 0.5rem;
61
+ --bs-border-radius-xl: 1rem;
62
+ --bs-border-radius-2xl: 2rem;
63
+ --bs-border-radius-pill: 50rem;
64
+ --bs-link-color: #0d6efd;
65
+ --bs-link-hover-color: #0a58ca;
66
+ --bs-code-color: #d63384;
67
+ --bs-highlight-bg: #fff3cd;
68
+ }
69
+
1
70
  *,
2
71
  *::before,
3
72
  *::after {
@@ -403,75 +472,6 @@ progress {
403
472
  display: none !important;
404
473
  }
405
474
 
406
- :root {
407
- --bs-blue: #0d6efd;
408
- --bs-indigo: #6610f2;
409
- --bs-purple: #6f42c1;
410
- --bs-pink: #d63384;
411
- --bs-red: #dc3545;
412
- --bs-orange: #fd7e14;
413
- --bs-yellow: #ffc107;
414
- --bs-green: #198754;
415
- --bs-teal: #20c997;
416
- --bs-cyan: #0dcaf0;
417
- --bs-black: #000;
418
- --bs-white: #fff;
419
- --bs-gray: #6c757d;
420
- --bs-gray-dark: #343a40;
421
- --bs-gray-100: #f8f9fa;
422
- --bs-gray-200: #e9ecef;
423
- --bs-gray-300: #dee2e6;
424
- --bs-gray-400: #ced4da;
425
- --bs-gray-500: #adb5bd;
426
- --bs-gray-600: #6c757d;
427
- --bs-gray-700: #495057;
428
- --bs-gray-800: #343a40;
429
- --bs-gray-900: #212529;
430
- --bs-primary: #0d6efd;
431
- --bs-secondary: #6c757d;
432
- --bs-success: #198754;
433
- --bs-info: #0dcaf0;
434
- --bs-warning: #ffc107;
435
- --bs-danger: #dc3545;
436
- --bs-light: #f8f9fa;
437
- --bs-dark: #212529;
438
- --bs-primary-rgb: 13, 110, 253;
439
- --bs-secondary-rgb: 108, 117, 125;
440
- --bs-success-rgb: 25, 135, 84;
441
- --bs-info-rgb: 13, 202, 240;
442
- --bs-warning-rgb: 255, 193, 7;
443
- --bs-danger-rgb: 220, 53, 69;
444
- --bs-light-rgb: 248, 249, 250;
445
- --bs-dark-rgb: 33, 37, 41;
446
- --bs-white-rgb: 255, 255, 255;
447
- --bs-black-rgb: 0, 0, 0;
448
- --bs-body-color-rgb: 33, 37, 41;
449
- --bs-body-bg-rgb: 255, 255, 255;
450
- --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
451
- --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
452
- --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
453
- --bs-body-font-family: var(--bs-font-sans-serif);
454
- --bs-body-font-size: 1rem;
455
- --bs-body-font-weight: 400;
456
- --bs-body-line-height: 1.5;
457
- --bs-body-color: #212529;
458
- --bs-body-bg: #fff;
459
- --bs-border-width: 1px;
460
- --bs-border-style: solid;
461
- --bs-border-color: #dee2e6;
462
- --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
463
- --bs-border-radius: 0.375rem;
464
- --bs-border-radius-sm: 0.25rem;
465
- --bs-border-radius-lg: 0.5rem;
466
- --bs-border-radius-xl: 1rem;
467
- --bs-border-radius-2xl: 2rem;
468
- --bs-border-radius-pill: 50rem;
469
- --bs-link-color: #0d6efd;
470
- --bs-link-hover-color: #0a58ca;
471
- --bs-code-color: #d63384;
472
- --bs-highlight-bg: #fff3cd;
473
- }
474
-
475
475
  .form-label {
476
476
  margin-bottom: 0.5rem;
477
477
  }