@repobit/dex-system-design 0.11.0 → 0.14.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.
Files changed (97) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +2 -2
  3. package/src/assets/icons/Identity_protection.png +0 -0
  4. package/src/assets/icons/device_protection.png +0 -0
  5. package/src/assets/icons/financial_insurance.png +0 -0
  6. package/src/assets/icons/privacy_protection.png +0 -0
  7. package/src/assets/icons/user_guide.png +0 -0
  8. package/src/components/Button/Button.js +19 -16
  9. package/src/components/Button/button.css.js +18 -16
  10. package/src/components/Button/icons.js +8 -8
  11. package/src/components/FAQ/faq.css.js +48 -49
  12. package/src/components/FAQ/faq.js +0 -86
  13. package/src/components/Input/Input.js +68 -6
  14. package/src/components/Input/custom-form.stories.js +88 -0
  15. package/src/components/Input/input-clipboard.css.js +168 -0
  16. package/src/components/Input/input-clipboard.js +137 -0
  17. package/src/components/Input/input.css.js +122 -42
  18. package/src/components/accordion/accordion-bg.css.js +117 -0
  19. package/src/components/accordion/accordion-bg.js +80 -0
  20. package/src/components/accordion/accordion-no-bg.css.js +114 -0
  21. package/src/components/accordion/accordion-no-bg.js +80 -0
  22. package/src/components/accordion/accordion.css.js +88 -0
  23. package/src/components/accordion/accordion.js +81 -0
  24. package/src/components/anchor/anchor-nav.css.js +15 -15
  25. package/src/components/anchor/anchor-nav.js +0 -1
  26. package/src/components/anchor/anchor.stories.js +10 -13
  27. package/src/components/badge/badge.css.js +6 -6
  28. package/src/components/badge/badge.js +1 -2
  29. package/src/components/badge/badge.stories.js +6 -6
  30. package/src/components/carousel/carousel.css.js +60 -60
  31. package/src/components/carousel/carousel.js +26 -30
  32. package/src/components/carousel/carousel.stories.js +55 -55
  33. package/src/components/checkbox/checkbox.css.js +14 -14
  34. package/src/components/divider/divider-horizontal.js +19 -14
  35. package/src/components/divider/divider-vertical.js +23 -14
  36. package/src/components/divider/divider.css.js +19 -0
  37. package/src/components/dropdown/dropdown.css.js +138 -0
  38. package/src/components/dropdown/dropdown.js +111 -0
  39. package/src/components/footer/footer-links-group.css.js +42 -0
  40. package/src/components/footer/footer-links-group.js +25 -0
  41. package/src/components/footer/footer-lp.css.js +625 -0
  42. package/src/components/footer/footer-lp.js +368 -0
  43. package/src/components/footer/footer-lp.stories.js +69 -0
  44. package/src/components/footer/footer-nav-menu.css.js +24 -0
  45. package/src/components/footer/footer-nav-menu.js +36 -0
  46. package/src/components/footer/footer.css.js +625 -0
  47. package/src/components/footer/footer.js +465 -0
  48. package/src/components/footer/footer.stories.js +60 -0
  49. package/src/components/footer/localeMap.js +1 -0
  50. package/src/components/grid/grid.css.js +38 -0
  51. package/src/components/grid/grid.js +55 -0
  52. package/src/components/header/header.css.js +81 -52
  53. package/src/components/header/header.js +19 -19
  54. package/src/components/highlight/highlight.css.js +32 -22
  55. package/src/components/highlight/highlight.js +15 -4
  56. package/src/components/highlight/highlight.stories.js +4 -4
  57. package/src/components/light-carousel/light-carousel-simple.css.js +183 -0
  58. package/src/components/light-carousel/light-carousel-simple.js +73 -0
  59. package/src/components/light-carousel/light-carousel.css.js +50 -31
  60. package/src/components/light-carousel/light-carousel.js +14 -57
  61. package/src/components/light-carousel/light-carousel.stories.js +51 -10
  62. package/src/components/link/link.css.js +41 -0
  63. package/src/components/link/link.js +54 -0
  64. package/src/components/modal/modal.css.js +75 -0
  65. package/src/components/modal/modal.js +41 -0
  66. package/src/components/modal/modal.stories.js +40 -0
  67. package/src/components/paragraph/paragraph.css.js +1 -3
  68. package/src/components/pricing-cards/new-pricing-card.js +30 -0
  69. package/src/components/pricing-cards/new-pricing.css.js +58 -0
  70. package/src/components/pricing-cards/pricing-card-actions.css.js +16 -0
  71. package/src/components/pricing-cards/pricing-card-actions.js +20 -0
  72. package/src/components/pricing-cards/pricing-card-container.css.js +41 -0
  73. package/src/components/pricing-cards/pricing-card-container.js +31 -0
  74. package/src/components/pricing-cards/pricing-card-header.css.js +70 -0
  75. package/src/components/pricing-cards/pricing-card-header.js +46 -0
  76. package/src/components/pricing-cards/pricing-card-pricing.css.js +63 -0
  77. package/src/components/pricing-cards/pricing-card-pricing.js +101 -0
  78. package/src/components/pricing-cards/pricing-card-show-more.css.js +22 -0
  79. package/src/components/pricing-cards/pricing-card-show-more.js +33 -0
  80. package/src/components/pricing-cards/pricing-card.css.js +91 -89
  81. package/src/components/pricing-cards/pricing-card.js +13 -16
  82. package/src/components/pricing-cards/pricing-feature-item.css.js +18 -0
  83. package/src/components/pricing-cards/pricing-feature-item.js +14 -0
  84. package/src/components/radio/radio.css.js +18 -18
  85. package/src/components/radio/radio.js +1 -0
  86. package/src/components/tabs/tabs.css.js +21 -11
  87. package/src/components/tabs/tabs.js +24 -18
  88. package/src/components/termsOfUse/terms.css.js +6 -6
  89. package/src/components/termsOfUse/terms.js +0 -1
  90. package/src/stories/demo.stories.js +270 -0
  91. package/src/tokens/layout.css +1 -0
  92. package/src/tokens/tokens.css +412 -0
  93. package/src/components/highlight/highlight-s.css.js +0 -88
  94. package/src/components/highlight/highlight-s.js +0 -35
  95. package/src/components/highlight/highlight-s.stories.js +0 -22
  96. package/src/tokens/fonts.css +0 -166
  97. package/src/tokens/tokens.js +0 -281
@@ -0,0 +1,625 @@
1
+ import { css } from 'lit';
2
+
3
+ export default css`
4
+ :host {
5
+ display: block;
6
+ background-color: var(--color-blue-600);
7
+ color: var(--color-neutral-0);
8
+ font-family: 'IBM Plex Sans', sans-serif;
9
+ font-size: var(--typography-body-small-fontSize);
10
+ line-height: var(--typography-lineHeight-normal);
11
+ }
12
+
13
+ bd-divider-vertical {
14
+ display: inline-block;
15
+ width: var(--form-input-default-borderWidth);
16
+ height: var(--dimension-20px);
17
+ background-color: var(--color-neutral-0);
18
+ }
19
+
20
+ bd-divider-horizontal {
21
+ display: block;
22
+ background-color: var(--color-neutral-0);
23
+ opacity: 0.25;
24
+ }
25
+
26
+ footer {
27
+ padding: var(--spacing-32) var(--spacing-16);
28
+ max-width: 1200px;
29
+ margin: auto;
30
+ }
31
+
32
+ .footer-top {
33
+ display: flex;
34
+ justify-content: space-between;
35
+ align-items: center;
36
+ background-color: var(--color-blue-500);
37
+ }
38
+
39
+ .footer-nav-main {
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: flex-start;
43
+ gap: var(--spacing-16);
44
+ flex-wrap: wrap;
45
+ padding-top: var(--spacing-24);
46
+ padding-bottom: var(--spacing-24);
47
+ font-size: var(--typography-body-regular-fontSize);
48
+ font-family: var(--typography-fontFamily-sans, 'IBM Plex Sans');
49
+ }
50
+
51
+ bd-footer-nav.second-nav {
52
+ font-weight: var(--typography-fontWeight-medium);
53
+ }
54
+
55
+ .footer-links {
56
+ display: flex;
57
+ justify-content: space-between;
58
+ align-items: flex-start;
59
+ gap: var(--spacing-32);
60
+ margin-bottom: var(--spacing-24);
61
+ flex-wrap: nowrap;
62
+ }
63
+
64
+ .footer-middle-line-lp {
65
+ display: flex;
66
+ justify-content: space-between;
67
+ align-items: baseline;
68
+ gap: (--spacing-16);
69
+ padding-top: var(--spacing-24);
70
+ padding-bottom: var(--spacing-24);
71
+
72
+ }
73
+
74
+ .footer-middle-line-lp > :last-child {
75
+ flex: 1;
76
+ display: flex;
77
+ justify-content: flex-end;
78
+ align-items: baseline;
79
+ margin: 0;
80
+ font-size: var(--typography-body-small-fontSize);
81
+ font-family: var(--typography-fontFamily-sans, 'IBM Plex Sans');
82
+ font-weight: var(--typography-fontWeight-normal);
83
+ color: white;
84
+ }
85
+
86
+ .footer-middle-line-lp > * {
87
+ line-height: var(--typography-lineHeight-normal);
88
+ }
89
+
90
+ .second-nav {
91
+ flex-shrink: 0;
92
+ max-width: 60%;
93
+ }
94
+
95
+ .footer-address {
96
+ flex-grow: 1;
97
+ text-align: right;
98
+ margin-bottom: var(--spacing-16);
99
+ }
100
+
101
+ .footer-links-left {
102
+ flex: 1;
103
+ display: flex;
104
+ flex-wrap: wrap;
105
+ gap: var(--spacing-32);
106
+ }
107
+
108
+ .footer-links-right {
109
+ display: flex;
110
+ align-items: center;
111
+ gap: var(--spacing-16);
112
+ min-width: 200px
113
+ }
114
+
115
+ .quick-links-section {
116
+ flex: 1 1 auto;
117
+ min-width: 200px;
118
+ }
119
+
120
+ .quick-links-title {
121
+ font-weight: var(--typography-fontWeight-semibold);
122
+ margin-bottom: var(--spacing-8);
123
+ }
124
+
125
+ .quick-links-columns {
126
+ display: grid;
127
+ gap: var(--spacing-8) var(--spacing-16);
128
+ }
129
+
130
+ .quick-links-column {
131
+ display: flex;
132
+ flex-direction: column;
133
+ gap: var(--spacing-4);
134
+ }
135
+
136
+ .footer-social-legal {
137
+ display: flex;
138
+ justify-content: space-between;
139
+ flex-wrap: wrap;
140
+ gap: var(--spacing-16);
141
+ border-top: var(--form-input-default-borderWidth) solid rgba(255,255,255,0.2);
142
+ padding-top: var(--spacing-16);
143
+ margin-bottom: var(--spacing-16);
144
+ }
145
+
146
+ .legal-links {
147
+ display: flex;
148
+ flex-wrap: wrap;
149
+ gap: var(--spacing-16);
150
+ }
151
+
152
+ .social-icons {
153
+ display: flex;
154
+ gap: var(--spacing-16);
155
+ }
156
+
157
+ .footer-bottom {
158
+ display: flex;
159
+ justify-content: space-between;
160
+ align-items: center;
161
+ flex-wrap: wrap;
162
+ gap: var(--spacing-16);
163
+ border-top: var(--form-input-default-borderWidth) solid rgba(255,255,255,0.2);
164
+ padding-top: var(--spacing-16);
165
+ }
166
+
167
+ .locale-select {
168
+ display: flex;
169
+ align-items: center;
170
+ gap: var(--spacing-8);
171
+ }
172
+
173
+ a {
174
+ color: var(--color-neutral-0);
175
+ text-decoration: none;
176
+ }
177
+
178
+ a:hover {
179
+ text-decoration: underline;
180
+ }
181
+
182
+ ::slotted(a[slot="social-top"]) {
183
+ display: inline-flex;
184
+ align-items: center;
185
+ justify-content: center;
186
+ width: var(--dimension-32px);
187
+ height: var(--dimension-32px);
188
+ }
189
+
190
+ ::slotted(a[slot="social-top"] svg) {
191
+ width: 100%;
192
+ height: 100%;
193
+ fill: white;
194
+ color: white !important;
195
+ }
196
+
197
+ .footer-links-right.social-icons {
198
+ margin-top: var(--spacing-16);
199
+ }
200
+
201
+ .footer-extra {
202
+ display: flex;
203
+ justify-content: space-between;
204
+ align-items: center;
205
+ gap: var(--spacing-16);
206
+ padding-top: var(--spacing-24);
207
+ padding-bottom: var(--spacing-24);
208
+ flex-wrap: wrap;
209
+ }
210
+
211
+ .footer-anpc-lp {
212
+ flex: 1;
213
+ text-align: center;
214
+ }
215
+
216
+ .footer-locale {
217
+ text-align: right;
218
+ }
219
+
220
+ .footer-countries {
221
+ text-align: right;
222
+ position: relative;
223
+ display: inline-block;
224
+ }
225
+
226
+ .dropdown-btn {
227
+ cursor: pointer;
228
+ padding: var(--spacing-8) var(--spacing-16);
229
+ background: transparent;
230
+ border: var(--form-input-default-borderWidth) solid #ccc;
231
+ border-radius: var(--radius-sm);
232
+ font-size: var(--typography-body-small-fontSize);
233
+ color: white;
234
+ }
235
+
236
+ .dropdown-list {
237
+ position: absolute;
238
+ top: 100%;
239
+ right: 0;
240
+ background: white;
241
+ border: var(--form-input-default-borderWidth) solid #ccc;
242
+ border-radius: var(--radius-sm);
243
+ display: none;
244
+ min-width: 160px;
245
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
246
+ z-index: 1000;
247
+ }
248
+
249
+ .dropdown-list.open {
250
+ display: block;
251
+ }
252
+
253
+ .dropdown-list ::slotted(a) {
254
+ display: block;
255
+ padding: var(--spacing-8) var(--spacing-16);
256
+ color: #333;
257
+ text-decoration: none;
258
+ }
259
+
260
+ .dropdown-list ::slotted(a:hover) {
261
+ background: #f2f2f2;
262
+ }
263
+
264
+ .countries-dropdown {
265
+ position: absolute;
266
+ top: 100%;
267
+ left: 0;
268
+ background: white;
269
+ color: black;
270
+ padding: var(--spacing-8);
271
+ border: var(--form-input-default-borderWidth) solid #ccc;
272
+ z-index: 10;
273
+ }
274
+
275
+ .country-toggle {
276
+ background: none;
277
+ border: var(--form-input-default-borderWidth) solid white;
278
+ color: white;
279
+ padding: var(--spacing-8) var(--spacing-16);
280
+ cursor: pointer;
281
+ border-radius: var(--form-input-large-borderRadius);
282
+ font-family: 'IBM Plex Sans', sans-serif;
283
+ font-size: var(--typography-body-small-fontSize);
284
+ display: inline-flex;
285
+ align-items: center;
286
+ gap: var(--spacing-8);
287
+ }
288
+
289
+ .country-toggle img {
290
+ width: var(--dimension-20px);
291
+ height: var(--dimension-20px);
292
+ object-fit: contain;
293
+ }
294
+
295
+ .country-toggle .arrow {
296
+ margin-left: var(--spacing-4);
297
+ }
298
+
299
+ .arrow img {
300
+ display: inline-block;
301
+ width: var(--dimension-20px);
302
+ height: auto;
303
+ vertical-align: middle;
304
+ }
305
+
306
+ .countries-container {
307
+ margin-top: var(--spacing-4);
308
+ }
309
+
310
+ .footer-copy {
311
+ font-size: var(--typography-fontSize-sm);
312
+ color: var(--color-gray-400);
313
+ }
314
+
315
+ .footer-countries-container {
316
+ display: inline-flex;
317
+ gap: 10rem;
318
+ }
319
+
320
+ bd-footer-links-group a.selected {
321
+ font-weight: var(--typography-fontWeight-bold);
322
+ position: relative;
323
+ padding-left: var(--spacing-12);
324
+ }
325
+
326
+ bd-footer-links-group a.selected::before {
327
+ content: '•';
328
+ position: absolute;
329
+ left: 0;
330
+ color: white;
331
+ }
332
+
333
+ .footer-top-bleed {
334
+ background: var(--color-blue-500);
335
+ }
336
+
337
+ .container {
338
+ max-width: 1600px;
339
+ margin: 0 auto;
340
+ padding: 0 var(--spacing-16);
341
+ }
342
+
343
+ .footer-top {
344
+ padding-top: var(--spacing-24);
345
+ padding-bottom: var(--spacing-24);
346
+ }
347
+
348
+ a.impressum {
349
+ display: none;
350
+ color: white;
351
+ text-decoration: none;
352
+ }
353
+
354
+ a.impressum.visible {
355
+ display: inline;
356
+ }
357
+
358
+ .country-selected {
359
+ font-weight: var(--typography-fontWeight-bold);
360
+ position: relative;
361
+ padding-left: var(--spacing-24);
362
+ }
363
+
364
+ .country-selected .bullet {
365
+ position: absolute;
366
+ left: 0;
367
+ color: white;
368
+ }
369
+
370
+ slot[name="countries"]::slotted(a) {
371
+ color: black;
372
+ text-decoration: none;
373
+ padding: var(--spacing-4) var(--spacing-8);
374
+ display: inline-block;
375
+ }
376
+
377
+ slot[name="countries"]::slotted(a.selected) {
378
+ background-color: #007bff;
379
+ color: white;
380
+ border-radius: var(--radius-sm);
381
+ }
382
+
383
+ .footer-countries-container a.selected {
384
+ font-weight: var(--typography-fontWeight-bold);
385
+ color: var(--color-primary);
386
+ }
387
+ .footer-countries-container {
388
+ margin-top: var(--spacing-16);
389
+ padding: var(--spacing-24);
390
+ border-radius: var(--radius-lg);
391
+ transition: all 0.3s ease;
392
+ width: 90%;
393
+ }
394
+ .footer-countries-container {
395
+ position: relative;
396
+ padding-top: 40px;
397
+ }
398
+
399
+ .close-countries-button {
400
+ position: absolute;
401
+ top: 10px;
402
+ right: 10px;
403
+ background: none;
404
+ border: none;
405
+ cursor: pointer;
406
+ padding: var(--spacing-6);
407
+ z-index: 10;
408
+ }
409
+
410
+ .close-countries-button img {
411
+ width: var(--dimension-20px);
412
+ height: var(--dimension-20px);
413
+ display: block;
414
+ }
415
+
416
+ @media (max-width: 768px) {
417
+ :host {
418
+ // background-color: var(--color-neutral-0) !important;
419
+ // color: #151719 !important;
420
+ // --nav-link-color: #151719 !important;
421
+ }
422
+
423
+ .footer-nav-main {
424
+ flex-direction: column;
425
+ align-items: flex-start;
426
+ gap: var(--spacing-8);
427
+ }
428
+
429
+ .footer-nav-main bd-divider-vertical {
430
+ display: none !important;
431
+ }
432
+
433
+ // .footer-nav-main a {
434
+ // color: #151719 !important;
435
+ // padding: 0.25rem 0;
436
+ // }
437
+
438
+ // bd-footer a[slot="nav"] svg {
439
+ // fill: #151719 !important;
440
+ // }
441
+
442
+ // * {
443
+ // color: #151719 !important;
444
+ // }
445
+
446
+ // bd-divider-vertical,
447
+ // bd-divider-horizontal {
448
+ // background-color: #151719 !important;
449
+ // }
450
+
451
+ // a {
452
+ // color: #151719 !important;
453
+ // }
454
+
455
+ // a:hover {
456
+ // color: #151719 !important;
457
+ // }
458
+
459
+ // ::slotted(a[slot="social-top"] svg) {
460
+ // fill: #151719 !important;
461
+ // color: #151719 !important;
462
+ // }
463
+
464
+ // nav.footer-nav-main ::slotted(a[slot="nav"]) {
465
+ // color: #151719 !important;
466
+ // }
467
+
468
+ // .country-toggle {
469
+ // color: #151719 !important;
470
+ // border-color: #151719 !important;
471
+ // }
472
+
473
+ // .footer-top {
474
+ // flex-direction: row;
475
+ // align-items: flex-start;
476
+ // gap: var(--spacing-16);
477
+ // background-color: var(--color-neutral-0) !important;
478
+ // padding: var(--spacing-32) 0 0;
479
+ // }
480
+
481
+ .footer-links {
482
+ flex-direction: column;
483
+ gap: var(--spacing-32);
484
+ }
485
+
486
+ .footer-middle-line-lp {
487
+ flex-direction: column;
488
+ align-items: flex-start;
489
+ gap: var(--spacing-16);
490
+ }
491
+
492
+ .footer-middle-line-lp > :last-child {
493
+ justify-content: flex-start;
494
+ text-align: left;
495
+ }
496
+
497
+ .footer-social-legal,
498
+ .footer-bottom {
499
+ flex-direction: column;
500
+ align-items: flex-start;
501
+ gap: var(--spacing-16);
502
+ }
503
+
504
+ .footer-address {
505
+ text-align: left;
506
+ }
507
+
508
+ .footer-extra {
509
+ flex-direction: column;
510
+ align-items: flex-start;
511
+ }
512
+
513
+ .footer-anpc-lp,
514
+ .footer-locale,
515
+ .footer-countries {
516
+ text-align: left;
517
+ width: 100%;
518
+ }
519
+
520
+ .footer-nav-main a[slot="nav"] {
521
+ color: #151719 !important;
522
+ }
523
+
524
+ bd-footer-links-group {
525
+ margin-bottom: 10px;
526
+ }
527
+
528
+ .second-nav .footer-nav-main {
529
+ flex-direction: column;
530
+ align-items: flex-start;
531
+ gap: var(--spacing-14);
532
+ }
533
+
534
+ .second-nav .footer-nav-main bd-divider-vertical {
535
+ display: none !important;
536
+ }
537
+
538
+ .second-nav .footer-nav-main a {
539
+ color: #151719 !important;
540
+ padding: var(--spacing-4) 0;
541
+ display: block;
542
+ }
543
+
544
+ .footer-links-right.social-icons a svg {
545
+ fill: #151719 !important;
546
+ color: #151719 !important;
547
+ }
548
+ // .footer-top-bleed {
549
+ // background: transparent;
550
+ // }
551
+ .social-icons {
552
+ gap: var(--spacing-40);
553
+ align-items: center;
554
+ margin:auto;
555
+ }
556
+ .second-nav {
557
+ flex-direction: column;
558
+ align-items: flex-start;
559
+ gap: var(--spacing-8);
560
+ }
561
+ .second-nav.footer-nav-main{
562
+ display: inline-grid;}
563
+ .second-nav bd-divider-vertical {
564
+ display: none !important;
565
+ }
566
+
567
+ .second-nav a {
568
+ color: #151719 !important;
569
+ padding: var(--spacing-4) 0;
570
+ display: block;
571
+ }
572
+ .footer-countries-toggle{
573
+ display: flex;
574
+ justify-content: center;
575
+ align-items: center;
576
+ width: 100%;
577
+ margin: var(--spacing-16) 0;
578
+ }
579
+ .country-toggle{
580
+ width: 270px;
581
+ height: 40px;
582
+ display: flex;
583
+ align-items: center;
584
+ justify-content: center;
585
+ margin: 0 auto;
586
+ }
587
+ .footer-countries-container {
588
+ display: block !important;
589
+ }
590
+ }
591
+
592
+ .footer-countries-container {
593
+ display: flex;
594
+ gap: var(--spacing-32);
595
+ flex-wrap: wrap;
596
+ justify-content: space-between;
597
+ }
598
+
599
+ /* Pentru desktop - 3 coloane */
600
+ .footer-countries-container bd-footer-links-group {
601
+ flex: 1;
602
+ min-width: calc(33.33% - var(--spacing-32));
603
+ }
604
+
605
+ /* Pentru tableta - 2 coloane */
606
+ @media (max-width: 1024px) and (min-width: 769px) {
607
+ .footer-countries-container bd-footer-links-group {
608
+ flex: 0 0 calc(50% - var(--spacing-16));
609
+ min-width: calc(50% - var(--spacing-16));
610
+ }
611
+ }
612
+
613
+ /* Pentru mobil - 1 coloană */
614
+ @media (max-width: 768px) {
615
+ .footer-countries-container {
616
+ flex-direction: column;
617
+ gap: var(--spacing-16);
618
+ }
619
+
620
+ .footer-countries-container bd-footer-links-group {
621
+ flex: 0 0 100%;
622
+ width: 100%;
623
+ }
624
+ }
625
+ `;