@mond-design-system/react 1.0.0-alpha.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/index.css ADDED
@@ -0,0 +1,1389 @@
1
+ /* src/components/Text/Text.module.css */
2
+ .Text_text {
3
+ margin: 0;
4
+ }
5
+ .Text_variant-body {
6
+ font: var(--mds-type-body);
7
+ }
8
+ .Text_variant-label {
9
+ font: var(--mds-type-label);
10
+ }
11
+ .Text_variant-note {
12
+ font: var(--mds-type-note);
13
+ }
14
+ .Text_variant-meta {
15
+ font: var(--mds-type-meta);
16
+ }
17
+ .Text_variant-eyebrow {
18
+ font: var(--mds-type-eyebrow);
19
+ letter-spacing: var(--mds-tracking-eyebrow);
20
+ text-transform: uppercase;
21
+ }
22
+ .Text_tone-primary {
23
+ color: var(--mds-text-primary);
24
+ }
25
+ .Text_tone-secondary {
26
+ color: var(--mds-text-secondary);
27
+ }
28
+ .Text_tone-muted {
29
+ color: var(--mds-text-muted);
30
+ }
31
+ .Text_tone-inverse {
32
+ color: var(--mds-text-inverse);
33
+ }
34
+ .Text_tone-accent {
35
+ color: var(--mds-text-accent);
36
+ }
37
+ .Text_tone-on-media {
38
+ color: var(--mds-text-on-media);
39
+ }
40
+ .Text_tone-danger {
41
+ color: var(--mds-status-danger);
42
+ }
43
+ .Text_tone-warning {
44
+ color: var(--mds-status-warning);
45
+ }
46
+ .Text_tone-success {
47
+ color: var(--mds-status-success);
48
+ }
49
+ .Text_align-left {
50
+ text-align: left;
51
+ }
52
+ .Text_align-center {
53
+ text-align: center;
54
+ }
55
+ .Text_align-right {
56
+ text-align: right;
57
+ }
58
+ .Text_truncate {
59
+ overflow: hidden;
60
+ white-space: nowrap;
61
+ text-overflow: ellipsis;
62
+ }
63
+
64
+ /* src/components/Heading/Heading.module.css */
65
+ .Heading_heading {
66
+ margin: 0;
67
+ }
68
+ .Heading_variant-display {
69
+ font: var(--mds-type-display);
70
+ letter-spacing: var(--mds-tracking-display);
71
+ }
72
+ .Heading_variant-title {
73
+ font: var(--mds-type-title);
74
+ }
75
+ .Heading_variant-subtitle {
76
+ font: var(--mds-type-subtitle);
77
+ }
78
+ .Heading_tone-primary {
79
+ color: var(--mds-text-primary);
80
+ }
81
+ .Heading_tone-secondary {
82
+ color: var(--mds-text-secondary);
83
+ }
84
+ .Heading_tone-inverse {
85
+ color: var(--mds-text-inverse);
86
+ }
87
+ .Heading_tone-accent {
88
+ color: var(--mds-text-accent);
89
+ }
90
+ .Heading_tone-on-media {
91
+ color: var(--mds-text-on-media);
92
+ }
93
+
94
+ /* src/components/Spinner/Spinner.module.css */
95
+ @keyframes Spinner_spin {
96
+ to {
97
+ transform: rotate(360deg);
98
+ }
99
+ }
100
+ .Spinner_spinner {
101
+ display: inline-block;
102
+ flex: none;
103
+ width: var(--spinner-size);
104
+ height: var(--spinner-size);
105
+ border: var(--spinner-border) solid var(--mds-border-strong);
106
+ border-top-color: currentcolor;
107
+ border-radius: var(--mds-radius-pill);
108
+ animation: Spinner_spin 0.7s linear infinite;
109
+ }
110
+
111
+ /* src/components/Icon/Icon.module.css */
112
+ .Icon_icon {
113
+ display: inline-flex;
114
+ align-items: center;
115
+ justify-content: center;
116
+ flex: none;
117
+ color: inherit;
118
+ }
119
+ .Icon_size-sm {
120
+ width: var(--mds-icon-sm);
121
+ height: var(--mds-icon-sm);
122
+ }
123
+ .Icon_size-md {
124
+ width: var(--mds-icon-md);
125
+ height: var(--mds-icon-md);
126
+ }
127
+ .Icon_size-lg {
128
+ width: var(--mds-icon-lg);
129
+ height: var(--mds-icon-lg);
130
+ }
131
+
132
+ /* src/components/Button/Button.module.css */
133
+ .Button_button {
134
+ display: inline-flex;
135
+ align-items: center;
136
+ justify-content: center;
137
+ gap: var(--mds-gap-tight);
138
+ border: var(--mds-border-width) solid transparent;
139
+ border-radius: var(--mds-radius-control);
140
+ font-family: var(--mds-font-body);
141
+ font-weight: var(--mds-weight-semibold);
142
+ line-height: 1;
143
+ white-space: nowrap;
144
+ cursor: pointer;
145
+ text-decoration: none;
146
+ transition: background-color var(--mds-transition-control), color var(--mds-transition-control);
147
+ }
148
+ .Button_size-sm {
149
+ height: var(--mds-control-h-sm);
150
+ padding: 0 var(--mds-space-3);
151
+ font-size: var(--mds-text-sm);
152
+ }
153
+ .Button_size-md {
154
+ height: var(--mds-control-h-md);
155
+ padding: 0 var(--mds-space-4);
156
+ font-size: var(--mds-text-base);
157
+ }
158
+ .Button_size-lg {
159
+ height: var(--mds-control-h-lg);
160
+ padding: 0 var(--mds-space-5);
161
+ font-size: var(--mds-text-lg);
162
+ }
163
+ .Button_variant-primary {
164
+ background: var(--mds-action-bg);
165
+ color: var(--mds-action-fg);
166
+ }
167
+ .Button_variant-primary:hover:not(:disabled) {
168
+ background: var(--mds-action-bg-hover);
169
+ }
170
+ .Button_variant-primary:active:not(:disabled) {
171
+ background: var(--mds-action-bg-active);
172
+ }
173
+ .Button_variant-secondary {
174
+ background: transparent;
175
+ color: var(--mds-text-primary);
176
+ border-color: var(--mds-control-border);
177
+ }
178
+ .Button_variant-ghost {
179
+ background: transparent;
180
+ color: var(--mds-text-primary);
181
+ }
182
+ .Button_variant-secondary:hover:not(:disabled),
183
+ .Button_variant-ghost:hover:not(:disabled) {
184
+ background: var(--mds-surface-sunken);
185
+ }
186
+ .Button_variant-danger {
187
+ background: var(--mds-status-danger);
188
+ color: var(--mds-status-danger-contrast);
189
+ }
190
+ .Button_variant-danger:hover:not(:disabled) {
191
+ filter: brightness(0.94);
192
+ }
193
+ .Button_button:disabled {
194
+ background: var(--mds-action-disabled-bg);
195
+ color: var(--mds-action-disabled-fg);
196
+ border-color: transparent;
197
+ cursor: not-allowed;
198
+ }
199
+ .Button_fullWidth {
200
+ width: 100%;
201
+ }
202
+ .Button_icon-only {
203
+ padding: 0;
204
+ border-radius: var(--mds-radius-pill);
205
+ }
206
+ .Button_icon-only.Button_size-sm {
207
+ width: var(--mds-control-h-sm);
208
+ }
209
+ .Button_icon-only.Button_size-md {
210
+ width: var(--mds-control-h-md);
211
+ }
212
+ .Button_icon-only.Button_size-lg {
213
+ width: var(--mds-control-h-lg);
214
+ }
215
+
216
+ /* src/components/Link/Link.module.css */
217
+ .Link_link {
218
+ color: var(--mds-text-accent);
219
+ border-radius: var(--mds-radius-1);
220
+ transition: color var(--mds-transition-control);
221
+ }
222
+ .Link_variant-inline {
223
+ text-decoration: underline;
224
+ text-underline-offset: 0.15em;
225
+ }
226
+ .Link_variant-standalone {
227
+ text-decoration: none;
228
+ font-weight: var(--mds-weight-medium);
229
+ }
230
+ .Link_link:hover {
231
+ color: var(--mds-accent-hover);
232
+ }
233
+
234
+ /* src/components/Avatar/Avatar.module.css */
235
+ .Avatar_avatar {
236
+ display: inline-flex;
237
+ align-items: center;
238
+ justify-content: center;
239
+ flex: none;
240
+ overflow: hidden;
241
+ border-radius: var(--mds-radius-avatar);
242
+ background: var(--mds-surface-sunken);
243
+ color: var(--mds-text-secondary);
244
+ font-family: var(--mds-font-body);
245
+ font-weight: var(--mds-weight-semibold);
246
+ user-select: none;
247
+ }
248
+ .Avatar_size-sm {
249
+ width: var(--mds-avatar-sm);
250
+ height: var(--mds-avatar-sm);
251
+ font-size: var(--mds-text-xs);
252
+ }
253
+ .Avatar_size-md {
254
+ width: var(--mds-avatar-md);
255
+ height: var(--mds-avatar-md);
256
+ font-size: var(--mds-text-sm);
257
+ }
258
+ .Avatar_size-lg {
259
+ width: var(--mds-avatar-lg);
260
+ height: var(--mds-avatar-lg);
261
+ font-size: var(--mds-text-xl);
262
+ }
263
+ .Avatar_image {
264
+ width: 100%;
265
+ height: 100%;
266
+ object-fit: cover;
267
+ }
268
+ .Avatar_initials {
269
+ line-height: 1;
270
+ }
271
+
272
+ /* src/components/AvatarGroup/AvatarGroup.module.css */
273
+ .AvatarGroup_group {
274
+ display: inline-flex;
275
+ align-items: center;
276
+ }
277
+ .AvatarGroup_item {
278
+ display: inline-flex;
279
+ border-radius: var(--mds-radius-avatar);
280
+ box-shadow: 0 0 0 var(--mds-focus-width) var(--mds-surface-card);
281
+ }
282
+ .AvatarGroup_item + .AvatarGroup_item {
283
+ margin-left: calc(-1 * var(--mds-space-2));
284
+ }
285
+ .AvatarGroup_overflow {
286
+ align-items: center;
287
+ justify-content: center;
288
+ flex: none;
289
+ background: var(--mds-surface-sunken);
290
+ color: var(--mds-text-secondary);
291
+ font-family: var(--mds-font-body);
292
+ font-weight: var(--mds-weight-semibold);
293
+ user-select: none;
294
+ }
295
+ .AvatarGroup_size-sm {
296
+ width: var(--mds-avatar-sm);
297
+ height: var(--mds-avatar-sm);
298
+ font-size: var(--mds-text-xs);
299
+ }
300
+ .AvatarGroup_size-md {
301
+ width: var(--mds-avatar-md);
302
+ height: var(--mds-avatar-md);
303
+ font-size: var(--mds-text-sm);
304
+ }
305
+ .AvatarGroup_size-lg {
306
+ width: var(--mds-avatar-lg);
307
+ height: var(--mds-avatar-lg);
308
+ font-size: var(--mds-text-xl);
309
+ }
310
+
311
+ /* src/components/Badge/Badge.module.css */
312
+ .Badge_badge {
313
+ display: inline-flex;
314
+ align-items: center;
315
+ justify-content: center;
316
+ padding: 0 var(--mds-space-2);
317
+ min-width: var(--mds-space-5);
318
+ height: var(--mds-space-5);
319
+ border-radius: var(--mds-radius-pill);
320
+ font: var(--mds-type-meta);
321
+ font-weight: var(--mds-weight-semibold);
322
+ white-space: nowrap;
323
+ }
324
+ .Badge_tone-neutral {
325
+ background: var(--mds-surface-sunken);
326
+ color: var(--mds-text-primary);
327
+ }
328
+ .Badge_tone-accent {
329
+ background: var(--mds-accent-soft);
330
+ color: var(--mds-text-primary);
331
+ }
332
+ .Badge_tone-danger {
333
+ background: var(--mds-status-danger-soft);
334
+ color: var(--mds-text-primary);
335
+ }
336
+ .Badge_tone-warning {
337
+ background: var(--mds-status-warning-soft);
338
+ color: var(--mds-text-primary);
339
+ }
340
+ .Badge_tone-success {
341
+ background: var(--mds-status-success-soft);
342
+ color: var(--mds-text-primary);
343
+ }
344
+
345
+ /* src/components/Tag/Tag.module.css */
346
+ .Tag_tag {
347
+ display: inline-flex;
348
+ align-items: center;
349
+ gap: var(--mds-gap-hairline);
350
+ padding: var(--mds-space-1) var(--mds-space-2);
351
+ border-radius: var(--mds-radius-tag);
352
+ border: var(--mds-border-width) solid var(--mds-border-subtle);
353
+ background: var(--mds-surface-card);
354
+ color: var(--mds-text-secondary);
355
+ font: var(--mds-type-label);
356
+ white-space: nowrap;
357
+ }
358
+ .Tag_tone-accent {
359
+ background: var(--mds-accent-soft);
360
+ border-color: transparent;
361
+ color: var(--mds-text-primary);
362
+ }
363
+ .Tag_remove {
364
+ display: inline-flex;
365
+ align-items: center;
366
+ justify-content: center;
367
+ border: none;
368
+ padding: 0;
369
+ margin-right: calc(-1 * var(--mds-space-1));
370
+ width: var(--mds-icon-md);
371
+ height: var(--mds-icon-md);
372
+ border-radius: var(--mds-radius-pill);
373
+ background: transparent;
374
+ color: inherit;
375
+ cursor: pointer;
376
+ }
377
+ .Tag_remove:hover {
378
+ background: var(--mds-surface-sunken);
379
+ }
380
+ .Tag_removeGlyph {
381
+ width: var(--mds-icon-sm);
382
+ height: var(--mds-icon-sm);
383
+ }
384
+
385
+ /* src/components/Divider/Divider.module.css */
386
+ .Divider_divider {
387
+ background: var(--mds-border-subtle);
388
+ flex: none;
389
+ }
390
+ .Divider_horizontal {
391
+ height: var(--mds-border-width);
392
+ width: 100%;
393
+ }
394
+ .Divider_vertical {
395
+ width: var(--mds-border-width);
396
+ align-self: stretch;
397
+ }
398
+
399
+ /* src/components/Skeleton/Skeleton.module.css */
400
+ .Skeleton_skeleton {
401
+ display: block;
402
+ background: var(--mds-surface-sunken);
403
+ animation: Skeleton_pulse var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
404
+ width: var(--skeleton-w, 100%);
405
+ }
406
+ .Skeleton_variant-text {
407
+ height: var(--skeleton-h, 1em);
408
+ border-radius: var(--mds-radius-1);
409
+ }
410
+ .Skeleton_variant-rect {
411
+ height: var(--skeleton-h, var(--mds-space-10));
412
+ border-radius: var(--mds-radius-media);
413
+ }
414
+ .Skeleton_variant-circle {
415
+ width: var(--skeleton-w, var(--mds-avatar-md));
416
+ height: var(--skeleton-h, var(--mds-avatar-md));
417
+ border-radius: var(--mds-radius-pill);
418
+ }
419
+ @keyframes Skeleton_pulse {
420
+ 0%, 100% {
421
+ opacity: 1;
422
+ }
423
+ 50% {
424
+ opacity: 0.55;
425
+ }
426
+ }
427
+
428
+ /* src/components/ProgressBar/ProgressBar.module.css */
429
+ .ProgressBar_track {
430
+ display: block;
431
+ width: 100%;
432
+ height: var(--mds-space-2);
433
+ border-radius: var(--mds-radius-pill);
434
+ background: var(--mds-surface-sunken);
435
+ overflow: hidden;
436
+ }
437
+ .ProgressBar_fill {
438
+ display: block;
439
+ height: 100%;
440
+ width: var(--progress, 0%);
441
+ border-radius: inherit;
442
+ background: var(--mds-accent);
443
+ transition: width var(--mds-transition-control);
444
+ }
445
+ .ProgressBar_indeterminate .ProgressBar_fill {
446
+ width: 40%;
447
+ animation: ProgressBar_slide var(--mds-dur-pulse) var(--mds-ease-standard) infinite;
448
+ }
449
+ @keyframes ProgressBar_slide {
450
+ from {
451
+ transform: translateX(-100%);
452
+ }
453
+ to {
454
+ transform: translateX(250%);
455
+ }
456
+ }
457
+
458
+ /* src/components/Field/Field.module.css */
459
+ .Field_field {
460
+ display: flex;
461
+ flex-direction: column;
462
+ gap: var(--mds-gap-hairline);
463
+ }
464
+ .Field_label {
465
+ font: var(--mds-type-label);
466
+ color: var(--mds-text-primary);
467
+ }
468
+ .Field_required {
469
+ color: var(--mds-status-danger);
470
+ margin-left: var(--mds-space-1);
471
+ }
472
+ .Field_message {
473
+ font: var(--mds-type-note);
474
+ color: var(--mds-text-secondary);
475
+ }
476
+ .Field_error {
477
+ color: var(--mds-status-danger);
478
+ }
479
+
480
+ /* src/components/Input/Input.module.css */
481
+ .Input_input {
482
+ width: 100%;
483
+ border: var(--mds-border-width) solid var(--mds-control-border);
484
+ border-radius: var(--mds-radius-control);
485
+ background: var(--mds-surface-card);
486
+ color: var(--mds-text-primary);
487
+ font-family: var(--mds-font-body);
488
+ transition: border-color var(--mds-transition-control);
489
+ }
490
+ .Input_input::placeholder {
491
+ color: var(--mds-text-muted);
492
+ }
493
+ .Input_input:disabled {
494
+ background: var(--mds-action-disabled-bg);
495
+ color: var(--mds-action-disabled-fg);
496
+ cursor: not-allowed;
497
+ }
498
+ .Input_input[aria-invalid=true] {
499
+ border-color: var(--mds-status-danger);
500
+ }
501
+ .Input_size-sm {
502
+ height: var(--mds-control-h-sm);
503
+ padding: 0 var(--mds-space-2);
504
+ font-size: var(--mds-text-sm);
505
+ }
506
+ .Input_size-md {
507
+ height: var(--mds-control-h-md);
508
+ padding: 0 var(--mds-space-3);
509
+ font-size: var(--mds-text-base);
510
+ }
511
+ .Input_size-lg {
512
+ height: var(--mds-control-h-lg);
513
+ padding: 0 var(--mds-space-4);
514
+ font-size: var(--mds-text-base);
515
+ }
516
+
517
+ /* src/components/PasswordInput/PasswordInput.module.css */
518
+ .PasswordInput_wrap {
519
+ position: relative;
520
+ display: block;
521
+ }
522
+ .PasswordInput_input {
523
+ width: 100%;
524
+ padding-right: calc(var(--mds-control-h-md) + var(--mds-space-1));
525
+ }
526
+ .PasswordInput_toggle {
527
+ position: absolute;
528
+ top: 0;
529
+ right: 0;
530
+ bottom: 0;
531
+ display: inline-flex;
532
+ align-items: center;
533
+ justify-content: center;
534
+ width: var(--mds-control-h-md);
535
+ margin: 0;
536
+ padding: 0;
537
+ border: none;
538
+ background: none;
539
+ color: var(--mds-text-muted);
540
+ font-size: var(--mds-text-lg);
541
+ cursor: pointer;
542
+ transition: color var(--mds-transition-control);
543
+ }
544
+ .PasswordInput_toggle:hover {
545
+ color: var(--mds-text-primary);
546
+ }
547
+
548
+ /* src/components/Textarea/Textarea.module.css */
549
+ .Textarea_textarea {
550
+ width: 100%;
551
+ padding: var(--mds-space-2) var(--mds-space-3);
552
+ border: var(--mds-border-width) solid var(--mds-control-border);
553
+ border-radius: var(--mds-radius-control);
554
+ background: var(--mds-surface-card);
555
+ color: var(--mds-text-primary);
556
+ font-family: var(--mds-font-body);
557
+ font-size: var(--mds-text-base);
558
+ line-height: var(--mds-leading-normal);
559
+ resize: vertical;
560
+ transition: border-color var(--mds-transition-control);
561
+ }
562
+ .Textarea_textarea::placeholder {
563
+ color: var(--mds-text-muted);
564
+ }
565
+ .Textarea_textarea:disabled {
566
+ background: var(--mds-action-disabled-bg);
567
+ color: var(--mds-action-disabled-fg);
568
+ cursor: not-allowed;
569
+ resize: none;
570
+ }
571
+ .Textarea_textarea[aria-invalid=true] {
572
+ border-color: var(--mds-status-danger);
573
+ }
574
+ .Textarea_wrap {
575
+ display: flex;
576
+ flex-direction: column;
577
+ align-items: flex-end;
578
+ gap: var(--mds-gap-hairline);
579
+ }
580
+ .Textarea_count {
581
+ font: var(--mds-type-meta);
582
+ color: var(--mds-text-muted);
583
+ }
584
+
585
+ /* src/components/Select/Select.module.css */
586
+ .Select_wrap {
587
+ position: relative;
588
+ display: inline-flex;
589
+ width: 100%;
590
+ }
591
+ .Select_select {
592
+ appearance: none;
593
+ width: 100%;
594
+ border: var(--mds-border-width) solid var(--mds-control-border);
595
+ border-radius: var(--mds-radius-control);
596
+ background: var(--mds-surface-card);
597
+ color: var(--mds-text-primary);
598
+ font-family: var(--mds-font-body);
599
+ cursor: pointer;
600
+ transition: border-color var(--mds-transition-control);
601
+ }
602
+ .Select_select:disabled {
603
+ background: var(--mds-action-disabled-bg);
604
+ color: var(--mds-action-disabled-fg);
605
+ cursor: not-allowed;
606
+ }
607
+ .Select_select[aria-invalid=true] {
608
+ border-color: var(--mds-status-danger);
609
+ }
610
+ .Select_size-sm {
611
+ height: var(--mds-control-h-sm);
612
+ padding: 0 var(--mds-space-7) 0 var(--mds-space-2);
613
+ font-size: var(--mds-text-sm);
614
+ }
615
+ .Select_size-md {
616
+ height: var(--mds-control-h-md);
617
+ padding: 0 var(--mds-space-8) 0 var(--mds-space-3);
618
+ font-size: var(--mds-text-base);
619
+ }
620
+ .Select_size-lg {
621
+ height: var(--mds-control-h-lg);
622
+ padding: 0 var(--mds-space-8) 0 var(--mds-space-4);
623
+ font-size: var(--mds-text-base);
624
+ }
625
+ .Select_chevron {
626
+ position: absolute;
627
+ right: var(--mds-space-2);
628
+ top: 50%;
629
+ transform: translateY(-50%);
630
+ width: var(--mds-icon-sm);
631
+ height: var(--mds-icon-sm);
632
+ color: var(--mds-text-secondary);
633
+ pointer-events: none;
634
+ }
635
+
636
+ /* src/components/Checkbox/Checkbox.module.css */
637
+ .Checkbox_root {
638
+ display: inline-flex;
639
+ align-items: center;
640
+ gap: var(--mds-gap-tight);
641
+ cursor: pointer;
642
+ min-height: var(--mds-tap-min);
643
+ }
644
+ .Checkbox_root:has(.Checkbox_box:disabled) {
645
+ cursor: not-allowed;
646
+ }
647
+ .Checkbox_box {
648
+ appearance: none;
649
+ flex: none;
650
+ margin: 0;
651
+ width: var(--mds-check-size);
652
+ height: var(--mds-check-size);
653
+ font-size: var(--mds-check-size);
654
+ border: var(--mds-border-width) solid var(--mds-control-border);
655
+ border-radius: var(--mds-radius-1);
656
+ background: var(--mds-surface-card);
657
+ display: inline-grid;
658
+ place-content: center;
659
+ cursor: inherit;
660
+ transition: var(--mds-transition-control);
661
+ }
662
+ .Checkbox_box:checked {
663
+ background: var(--mds-action-bg);
664
+ border-color: var(--mds-action-bg);
665
+ }
666
+ .Checkbox_box:checked::after {
667
+ content: "";
668
+ width: 0.32em;
669
+ height: 0.6em;
670
+ margin-top: -0.12em;
671
+ border: solid var(--mds-action-fg);
672
+ border-width: 0 calc(var(--mds-border-width) * 2) calc(var(--mds-border-width) * 2) 0;
673
+ transform: rotate(45deg);
674
+ }
675
+ .Checkbox_box:disabled {
676
+ background: var(--mds-action-disabled-bg);
677
+ border-color: var(--mds-border-strong);
678
+ }
679
+ .Checkbox_box:disabled:checked::after {
680
+ border-color: var(--mds-action-disabled-fg);
681
+ }
682
+ .Checkbox_label {
683
+ font: var(--mds-type-label);
684
+ color: var(--mds-text-primary);
685
+ }
686
+ .Checkbox_box:disabled ~ .Checkbox_label {
687
+ color: var(--mds-action-disabled-fg);
688
+ }
689
+
690
+ /* src/components/Radio/Radio.module.css */
691
+ .Radio_root {
692
+ display: inline-flex;
693
+ align-items: center;
694
+ gap: var(--mds-gap-tight);
695
+ cursor: pointer;
696
+ min-height: var(--mds-tap-min);
697
+ }
698
+ .Radio_root:has(.Radio_dot:disabled) {
699
+ cursor: not-allowed;
700
+ }
701
+ .Radio_dot {
702
+ appearance: none;
703
+ flex: none;
704
+ margin: 0;
705
+ width: var(--mds-check-size);
706
+ height: var(--mds-check-size);
707
+ border: var(--mds-border-width) solid var(--mds-control-border);
708
+ border-radius: var(--mds-radius-pill);
709
+ background: var(--mds-surface-card);
710
+ display: inline-grid;
711
+ place-content: center;
712
+ cursor: inherit;
713
+ transition: var(--mds-transition-control);
714
+ }
715
+ .Radio_dot:checked {
716
+ border-color: var(--mds-action-bg);
717
+ }
718
+ .Radio_dot:checked::after {
719
+ content: "";
720
+ width: 50%;
721
+ height: 50%;
722
+ border-radius: var(--mds-radius-pill);
723
+ background: var(--mds-action-bg);
724
+ }
725
+ .Radio_dot:disabled {
726
+ background: var(--mds-action-disabled-bg);
727
+ border-color: var(--mds-border-strong);
728
+ }
729
+ .Radio_dot:disabled:checked::after {
730
+ background: var(--mds-action-disabled-fg);
731
+ }
732
+ .Radio_label {
733
+ font: var(--mds-type-label);
734
+ color: var(--mds-text-primary);
735
+ }
736
+ .Radio_dot:disabled ~ .Radio_label {
737
+ color: var(--mds-action-disabled-fg);
738
+ }
739
+
740
+ /* src/components/Switch/Switch.module.css */
741
+ .Switch_root {
742
+ display: inline-flex;
743
+ align-items: center;
744
+ gap: var(--mds-gap-tight);
745
+ cursor: pointer;
746
+ min-height: var(--mds-tap-min);
747
+ }
748
+ .Switch_root:has(.Switch_track:disabled) {
749
+ cursor: not-allowed;
750
+ }
751
+ .Switch_track {
752
+ appearance: none;
753
+ flex: none;
754
+ margin: 0;
755
+ width: var(--mds-switch-w);
756
+ height: var(--mds-switch-h);
757
+ border-radius: var(--mds-radius-pill);
758
+ background: var(--mds-border-strong);
759
+ position: relative;
760
+ cursor: inherit;
761
+ transition: background-color var(--mds-transition-control);
762
+ }
763
+ .Switch_track::after {
764
+ content: "";
765
+ position: absolute;
766
+ top: 50%;
767
+ left: var(--mds-space-1);
768
+ transform: translateY(-50%);
769
+ width: var(--mds-switch-knob);
770
+ height: var(--mds-switch-knob);
771
+ border-radius: var(--mds-radius-pill);
772
+ background: var(--mds-surface-card);
773
+ transition: transform var(--mds-transition-control);
774
+ }
775
+ .Switch_track:checked {
776
+ background: var(--mds-action-bg);
777
+ }
778
+ .Switch_track:checked::after {
779
+ transform: translateY(-50%) translateX(calc(var(--mds-switch-w) - var(--mds-switch-knob) - 2 * var(--mds-space-1)));
780
+ }
781
+ .Switch_track:disabled {
782
+ background: var(--mds-action-disabled-bg);
783
+ }
784
+ .Switch_track:disabled::after {
785
+ background: var(--mds-action-disabled-fg);
786
+ }
787
+ .Switch_label {
788
+ font: var(--mds-type-label);
789
+ color: var(--mds-text-primary);
790
+ }
791
+ .Switch_track:disabled ~ .Switch_label {
792
+ color: var(--mds-action-disabled-fg);
793
+ }
794
+
795
+ /* src/components/SegmentedControl/SegmentedControl.module.css */
796
+ .SegmentedControl_group {
797
+ display: inline-flex;
798
+ padding: var(--mds-space-1);
799
+ gap: var(--mds-space-1);
800
+ background: var(--mds-surface-sunken);
801
+ border-radius: var(--mds-radius-control);
802
+ }
803
+ .SegmentedControl_segment {
804
+ display: inline-flex;
805
+ position: relative;
806
+ cursor: pointer;
807
+ }
808
+ .SegmentedControl_input {
809
+ appearance: none;
810
+ margin: 0;
811
+ position: absolute;
812
+ inset: 0;
813
+ width: 100%;
814
+ height: 100%;
815
+ opacity: 0;
816
+ cursor: inherit;
817
+ }
818
+ .SegmentedControl_face {
819
+ display: inline-flex;
820
+ align-items: center;
821
+ justify-content: center;
822
+ height: calc(var(--mds-control-h-md) - 2 * var(--mds-space-1));
823
+ padding: 0 var(--mds-space-3);
824
+ border-radius: var(--mds-radius-1);
825
+ font: var(--mds-type-label);
826
+ color: var(--mds-text-secondary);
827
+ white-space: nowrap;
828
+ transition: var(--mds-transition-control);
829
+ }
830
+ .SegmentedControl_input:checked + .SegmentedControl_face {
831
+ background: var(--mds-surface-card);
832
+ color: var(--mds-text-primary);
833
+ box-shadow: var(--mds-elevation-card);
834
+ }
835
+ .SegmentedControl_input:focus-visible + .SegmentedControl_face {
836
+ outline: var(--mds-focus-width) solid var(--mds-focus-ring-color);
837
+ outline-offset: var(--mds-focus-offset);
838
+ }
839
+
840
+ /* src/components/SearchField/SearchField.module.css */
841
+ .SearchField_wrap {
842
+ position: relative;
843
+ display: inline-flex;
844
+ align-items: center;
845
+ width: 100%;
846
+ }
847
+ .SearchField_glass {
848
+ position: absolute;
849
+ left: var(--mds-space-3);
850
+ width: var(--mds-icon-sm);
851
+ height: var(--mds-icon-sm);
852
+ color: var(--mds-text-muted);
853
+ pointer-events: none;
854
+ }
855
+ .SearchField_input {
856
+ width: 100%;
857
+ height: var(--mds-control-h-md);
858
+ padding: 0 var(--mds-space-9) 0 var(--mds-space-8);
859
+ border: var(--mds-border-width) solid var(--mds-control-border);
860
+ border-radius: var(--mds-radius-pill);
861
+ background: var(--mds-surface-card);
862
+ color: var(--mds-text-primary);
863
+ font-family: var(--mds-font-body);
864
+ font-size: var(--mds-text-base);
865
+ transition: border-color var(--mds-transition-control);
866
+ }
867
+ .SearchField_input::placeholder {
868
+ color: var(--mds-text-muted);
869
+ }
870
+ .SearchField_input::-webkit-search-cancel-button {
871
+ display: none;
872
+ }
873
+ .SearchField_clear {
874
+ position: absolute;
875
+ right: var(--mds-space-2);
876
+ display: inline-flex;
877
+ align-items: center;
878
+ justify-content: center;
879
+ width: var(--mds-icon-lg);
880
+ height: var(--mds-icon-lg);
881
+ border: none;
882
+ border-radius: var(--mds-radius-pill);
883
+ background: transparent;
884
+ color: var(--mds-text-secondary);
885
+ cursor: pointer;
886
+ }
887
+ .SearchField_clear:hover {
888
+ background: var(--mds-surface-sunken);
889
+ }
890
+ .SearchField_clearGlyph {
891
+ width: var(--mds-icon-sm);
892
+ height: var(--mds-icon-sm);
893
+ }
894
+
895
+ /* src/components/List/List.module.css */
896
+ .List_group {
897
+ list-style: none;
898
+ margin: 0;
899
+ padding: 0;
900
+ background: var(--mds-surface-card);
901
+ border: var(--mds-border-width) solid var(--mds-border-subtle);
902
+ border-radius: var(--mds-radius-card);
903
+ overflow: hidden;
904
+ }
905
+ .List_item + .List_item {
906
+ border-top: var(--mds-border-width) solid var(--mds-border-subtle);
907
+ }
908
+ .List_row {
909
+ display: flex;
910
+ align-items: center;
911
+ gap: var(--mds-gap);
912
+ width: 100%;
913
+ min-height: var(--mds-tap-min);
914
+ padding: var(--mds-space-3) var(--mds-pad-card);
915
+ text-align: left;
916
+ color: inherit;
917
+ text-decoration: none;
918
+ }
919
+ .List_interactive {
920
+ border: none;
921
+ background: transparent;
922
+ font: inherit;
923
+ cursor: pointer;
924
+ transition: background-color var(--mds-transition-control);
925
+ }
926
+ .List_interactive:hover {
927
+ background: var(--mds-surface-sunken);
928
+ }
929
+ .List_leading,
930
+ .List_trailing {
931
+ display: inline-flex;
932
+ flex: none;
933
+ align-items: center;
934
+ }
935
+ .List_text {
936
+ display: flex;
937
+ flex-direction: column;
938
+ gap: var(--mds-gap-hairline);
939
+ min-width: 0;
940
+ flex: 1;
941
+ }
942
+ .List_title {
943
+ font: var(--mds-type-label);
944
+ color: var(--mds-text-primary);
945
+ }
946
+ .List_description {
947
+ font: var(--mds-type-note);
948
+ color: var(--mds-text-secondary);
949
+ }
950
+
951
+ /* src/components/EmptyState/EmptyState.module.css */
952
+ .EmptyState_root {
953
+ display: flex;
954
+ flex-direction: column;
955
+ align-items: center;
956
+ text-align: center;
957
+ gap: var(--mds-stack-item);
958
+ padding: var(--mds-space-10) var(--mds-pad-card);
959
+ }
960
+ .EmptyState_icon {
961
+ display: inline-flex;
962
+ color: var(--mds-text-muted);
963
+ }
964
+ .EmptyState_action {
965
+ margin-top: var(--mds-space-2);
966
+ }
967
+
968
+ /* src/components/Tabs/Tabs.module.css */
969
+ .Tabs_list {
970
+ display: flex;
971
+ gap: var(--mds-space-1);
972
+ border-bottom: var(--mds-border-width) solid var(--mds-border-subtle);
973
+ }
974
+ .Tabs_tab {
975
+ border: none;
976
+ background: transparent;
977
+ padding: var(--mds-space-2) var(--mds-space-3);
978
+ margin-bottom: calc(-1 * var(--mds-border-width));
979
+ border-bottom: calc(2 * var(--mds-border-width)) solid transparent;
980
+ font: var(--mds-type-label);
981
+ color: var(--mds-text-secondary);
982
+ cursor: pointer;
983
+ white-space: nowrap;
984
+ transition: color var(--mds-transition-control);
985
+ }
986
+ .Tabs_tab:hover {
987
+ color: var(--mds-text-primary);
988
+ }
989
+ .Tabs_selected {
990
+ color: var(--mds-text-primary);
991
+ border-bottom-color: var(--mds-accent);
992
+ }
993
+ .Tabs_panel {
994
+ padding-top: var(--mds-stack-item);
995
+ }
996
+
997
+ /* src/components/Toast/Toast.module.css */
998
+ .Toast_viewport {
999
+ position: fixed;
1000
+ bottom: var(--mds-space-4);
1001
+ left: 50%;
1002
+ transform: translateX(-50%);
1003
+ z-index: var(--mds-z-toast);
1004
+ display: flex;
1005
+ flex-direction: column;
1006
+ gap: var(--mds-gap-tight);
1007
+ width: min(var(--mds-modal-w), calc(100vw - 2 * var(--mds-space-4)));
1008
+ pointer-events: none;
1009
+ }
1010
+ .Toast_toast {
1011
+ display: flex;
1012
+ align-items: flex-start;
1013
+ gap: var(--mds-gap);
1014
+ padding: var(--mds-space-3) var(--mds-space-4);
1015
+ border-radius: var(--mds-radius-card);
1016
+ border-left: calc(3 * var(--mds-border-width)) solid var(--mds-border-strong);
1017
+ background: var(--mds-surface-raised);
1018
+ box-shadow: var(--mds-elevation-modal);
1019
+ pointer-events: auto;
1020
+ }
1021
+ .Toast_tone-success {
1022
+ border-left-color: var(--mds-status-success);
1023
+ }
1024
+ .Toast_tone-danger {
1025
+ border-left-color: var(--mds-status-danger);
1026
+ }
1027
+ .Toast_body {
1028
+ display: flex;
1029
+ flex-direction: column;
1030
+ gap: var(--mds-gap-hairline);
1031
+ flex: 1;
1032
+ min-width: 0;
1033
+ }
1034
+ .Toast_title {
1035
+ font: var(--mds-type-label);
1036
+ color: var(--mds-text-primary);
1037
+ }
1038
+ .Toast_description {
1039
+ font: var(--mds-type-note);
1040
+ color: var(--mds-text-secondary);
1041
+ }
1042
+ .Toast_close {
1043
+ display: inline-flex;
1044
+ align-items: center;
1045
+ justify-content: center;
1046
+ flex: none;
1047
+ width: var(--mds-icon-lg);
1048
+ height: var(--mds-icon-lg);
1049
+ border: none;
1050
+ border-radius: var(--mds-radius-pill);
1051
+ background: transparent;
1052
+ color: var(--mds-text-secondary);
1053
+ cursor: pointer;
1054
+ }
1055
+ .Toast_close:hover {
1056
+ background: var(--mds-surface-sunken);
1057
+ }
1058
+ .Toast_closeGlyph {
1059
+ width: var(--mds-icon-sm);
1060
+ height: var(--mds-icon-sm);
1061
+ }
1062
+
1063
+ /* src/components/Stack/Stack.module.css */
1064
+ .Stack_stack {
1065
+ display: flex;
1066
+ flex-direction: column;
1067
+ }
1068
+ .Stack_gap-hairline {
1069
+ gap: var(--mds-gap-hairline);
1070
+ }
1071
+ .Stack_gap-tight {
1072
+ gap: var(--mds-gap-tight);
1073
+ }
1074
+ .Stack_gap-base {
1075
+ gap: var(--mds-gap);
1076
+ }
1077
+ .Stack_gap-loose {
1078
+ gap: var(--mds-gap-loose);
1079
+ }
1080
+ .Stack_gap-section {
1081
+ gap: var(--mds-stack-section);
1082
+ }
1083
+ .Stack_align-start {
1084
+ align-items: flex-start;
1085
+ }
1086
+ .Stack_align-center {
1087
+ align-items: center;
1088
+ }
1089
+ .Stack_align-end {
1090
+ align-items: flex-end;
1091
+ }
1092
+ .Stack_align-stretch {
1093
+ align-items: stretch;
1094
+ }
1095
+
1096
+ /* src/components/Inline/Inline.module.css */
1097
+ .Inline_inline {
1098
+ display: flex;
1099
+ flex-direction: row;
1100
+ }
1101
+ .Inline_gap-hairline {
1102
+ gap: var(--mds-gap-hairline);
1103
+ }
1104
+ .Inline_gap-tight {
1105
+ gap: var(--mds-gap-tight);
1106
+ }
1107
+ .Inline_gap-base {
1108
+ gap: var(--mds-gap);
1109
+ }
1110
+ .Inline_gap-loose {
1111
+ gap: var(--mds-gap-loose);
1112
+ }
1113
+ .Inline_align-start {
1114
+ align-items: flex-start;
1115
+ }
1116
+ .Inline_align-center {
1117
+ align-items: center;
1118
+ }
1119
+ .Inline_align-end {
1120
+ align-items: flex-end;
1121
+ }
1122
+ .Inline_align-baseline {
1123
+ align-items: baseline;
1124
+ }
1125
+ .Inline_justify-start {
1126
+ justify-content: flex-start;
1127
+ }
1128
+ .Inline_justify-center {
1129
+ justify-content: center;
1130
+ }
1131
+ .Inline_justify-end {
1132
+ justify-content: flex-end;
1133
+ }
1134
+ .Inline_justify-between {
1135
+ justify-content: space-between;
1136
+ }
1137
+ .Inline_wrap {
1138
+ flex-wrap: wrap;
1139
+ }
1140
+
1141
+ /* src/components/Container/Container.module.css */
1142
+ .Container_container {
1143
+ width: 100%;
1144
+ margin-inline: auto;
1145
+ padding-inline: var(--mds-pad-page-x);
1146
+ }
1147
+ .Container_width-content {
1148
+ max-width: var(--mds-content-max);
1149
+ }
1150
+ .Container_width-wide {
1151
+ max-width: var(--mds-content-max-wide);
1152
+ }
1153
+
1154
+ /* src/components/Card/Card.module.css */
1155
+ .Card_card {
1156
+ display: flex;
1157
+ flex-direction: column;
1158
+ background: var(--mds-surface-card);
1159
+ border: var(--mds-border-width) solid var(--mds-border-subtle);
1160
+ border-radius: var(--mds-radius-card);
1161
+ overflow: hidden;
1162
+ color: inherit;
1163
+ text-decoration: none;
1164
+ }
1165
+ .Card_variant-raised {
1166
+ border-color: transparent;
1167
+ background: var(--mds-surface-raised);
1168
+ box-shadow: var(--mds-elevation-raised);
1169
+ }
1170
+ .Card_interactive {
1171
+ padding: 0;
1172
+ margin: 0;
1173
+ font: inherit;
1174
+ text-align: left;
1175
+ cursor: pointer;
1176
+ transition: box-shadow var(--mds-transition-surface), background-color var(--mds-transition-surface);
1177
+ }
1178
+ .Card_interactive:hover {
1179
+ box-shadow: var(--mds-elevation-hover);
1180
+ }
1181
+ .Card_header {
1182
+ display: flex;
1183
+ align-items: center;
1184
+ gap: var(--mds-gap);
1185
+ padding: var(--mds-pad-card) var(--mds-pad-card) 0;
1186
+ font: var(--mds-type-subtitle);
1187
+ color: var(--mds-text-primary);
1188
+ }
1189
+ .Card_body {
1190
+ flex: 1;
1191
+ padding: var(--mds-pad-card);
1192
+ }
1193
+ .Card_footer {
1194
+ display: flex;
1195
+ align-items: center;
1196
+ gap: var(--mds-gap);
1197
+ padding: 0 var(--mds-pad-card) var(--mds-pad-card);
1198
+ }
1199
+
1200
+ /* src/components/Overlay/Overlay.module.css */
1201
+ .Overlay_scrim {
1202
+ position: fixed;
1203
+ inset: 0;
1204
+ display: flex;
1205
+ background: var(--mds-scrim);
1206
+ opacity: 0;
1207
+ transition: opacity var(--mds-dur-base) var(--mds-ease-standard);
1208
+ }
1209
+ .Overlay_scrim[data-open] {
1210
+ opacity: 1;
1211
+ }
1212
+ .Overlay_variant-modal {
1213
+ z-index: var(--mds-z-modal);
1214
+ align-items: center;
1215
+ justify-content: center;
1216
+ padding: var(--mds-pad-page-x);
1217
+ }
1218
+ .Overlay_variant-sheet {
1219
+ z-index: var(--mds-z-sheet);
1220
+ align-items: flex-end;
1221
+ }
1222
+
1223
+ /* src/components/Modal/Modal.module.css */
1224
+ .Modal_panel {
1225
+ display: flex;
1226
+ flex-direction: column;
1227
+ width: 100%;
1228
+ max-width: var(--mds-modal-w);
1229
+ max-height: 85dvh;
1230
+ background: var(--mds-surface-raised);
1231
+ border-radius: var(--mds-radius-3);
1232
+ box-shadow: var(--mds-elevation-modal);
1233
+ opacity: 0;
1234
+ transform: scale(0.96);
1235
+ transition: opacity var(--mds-dur-base) var(--mds-ease-standard), transform var(--mds-dur-base) var(--mds-ease-standard);
1236
+ }
1237
+ .Modal_panel[data-open] {
1238
+ opacity: 1;
1239
+ transform: none;
1240
+ }
1241
+ .Modal_header {
1242
+ display: flex;
1243
+ align-items: center;
1244
+ gap: var(--mds-gap);
1245
+ padding: var(--mds-pad-card) var(--mds-pad-card) 0;
1246
+ font: var(--mds-type-subtitle);
1247
+ color: var(--mds-text-primary);
1248
+ }
1249
+ .Modal_body {
1250
+ flex: 1;
1251
+ overflow-y: auto;
1252
+ padding: var(--mds-pad-card);
1253
+ }
1254
+ .Modal_footer {
1255
+ display: flex;
1256
+ align-items: center;
1257
+ justify-content: flex-end;
1258
+ gap: var(--mds-gap);
1259
+ padding: 0 var(--mds-pad-card) var(--mds-pad-card);
1260
+ }
1261
+
1262
+ /* src/components/Sheet/Sheet.module.css */
1263
+ .Sheet_panel {
1264
+ display: flex;
1265
+ flex-direction: column;
1266
+ width: 100%;
1267
+ max-height: 85dvh;
1268
+ background: var(--mds-surface-raised);
1269
+ border-radius: var(--mds-radius-sheet) var(--mds-radius-sheet) 0 0;
1270
+ box-shadow: var(--mds-elevation-sheet);
1271
+ transform: translateY(100%);
1272
+ transition: var(--mds-transition-sheet);
1273
+ }
1274
+ .Sheet_panel[data-open] {
1275
+ transform: none;
1276
+ }
1277
+ .Sheet_header {
1278
+ display: flex;
1279
+ align-items: center;
1280
+ gap: var(--mds-gap);
1281
+ padding: var(--mds-pad-card) var(--mds-pad-card) 0;
1282
+ font: var(--mds-type-subtitle);
1283
+ color: var(--mds-text-primary);
1284
+ }
1285
+ .Sheet_body {
1286
+ flex: 1;
1287
+ overflow-y: auto;
1288
+ padding: var(--mds-pad-card);
1289
+ }
1290
+ .Sheet_footer {
1291
+ display: flex;
1292
+ align-items: center;
1293
+ justify-content: flex-end;
1294
+ gap: var(--mds-gap);
1295
+ padding: 0 var(--mds-pad-card) var(--mds-pad-card);
1296
+ }
1297
+
1298
+ /* src/components/ConfirmDialog/ConfirmDialog.module.css */
1299
+ .ConfirmDialog_description {
1300
+ margin: 0;
1301
+ font: var(--mds-type-body);
1302
+ color: var(--mds-text-secondary);
1303
+ }
1304
+
1305
+ /* src/components/Screen/Screen.module.css */
1306
+ .Screen_screen {
1307
+ display: flex;
1308
+ flex-direction: column;
1309
+ min-height: 100dvh;
1310
+ background: var(--mds-surface-page);
1311
+ }
1312
+ .Screen_content {
1313
+ flex: 1;
1314
+ overflow-y: auto;
1315
+ padding: var(--mds-pad-page-y) var(--mds-pad-page-x);
1316
+ }
1317
+
1318
+ /* src/components/AppBar/AppBar.module.css */
1319
+ .AppBar_bar {
1320
+ position: sticky;
1321
+ top: 0;
1322
+ z-index: var(--mds-z-header);
1323
+ display: flex;
1324
+ align-items: center;
1325
+ gap: var(--mds-gap-tight);
1326
+ height: var(--mds-header-h);
1327
+ padding-inline: var(--mds-pad-page-x);
1328
+ background: var(--mds-surface-page);
1329
+ border-bottom: var(--mds-border-width) solid var(--mds-border-subtle);
1330
+ }
1331
+ .AppBar_title {
1332
+ flex: 1;
1333
+ min-width: 0;
1334
+ overflow: hidden;
1335
+ margin: 0;
1336
+ font: var(--mds-type-subtitle);
1337
+ color: var(--mds-text-primary);
1338
+ white-space: nowrap;
1339
+ text-overflow: ellipsis;
1340
+ }
1341
+ .AppBar_slot {
1342
+ display: flex;
1343
+ align-items: center;
1344
+ gap: var(--mds-gap-hairline);
1345
+ }
1346
+
1347
+ /* src/components/TabBar/TabBar.module.css */
1348
+ .TabBar_bar {
1349
+ position: sticky;
1350
+ bottom: 0;
1351
+ z-index: var(--mds-z-tabbar);
1352
+ display: flex;
1353
+ align-items: stretch;
1354
+ height: var(--mds-tabbar-h);
1355
+ background: var(--mds-surface-page);
1356
+ border-top: var(--mds-border-width) solid var(--mds-border-subtle);
1357
+ padding-bottom: env(safe-area-inset-bottom);
1358
+ }
1359
+ .TabBar_item {
1360
+ flex: 1;
1361
+ display: flex;
1362
+ flex-direction: column;
1363
+ align-items: center;
1364
+ justify-content: center;
1365
+ gap: var(--mds-gap-hairline);
1366
+ margin: 0;
1367
+ padding: 0;
1368
+ border: none;
1369
+ background: none;
1370
+ cursor: pointer;
1371
+ font: var(--mds-type-meta);
1372
+ color: var(--mds-text-muted);
1373
+ text-decoration: none;
1374
+ transition: color var(--mds-transition-control);
1375
+ }
1376
+ .TabBar_item:hover {
1377
+ color: var(--mds-text-secondary);
1378
+ }
1379
+ .TabBar_active,
1380
+ .TabBar_active:hover {
1381
+ color: var(--mds-text-accent);
1382
+ }
1383
+ .TabBar_icon {
1384
+ display: inline-flex;
1385
+ }
1386
+ .TabBar_label {
1387
+ line-height: 1;
1388
+ }
1389
+ /*# sourceMappingURL=index.css.map */