@voltstack/bravais 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,800 @@
1
+ /* src/shared/presentation/assets/stylesheets/theme.css */
2
+ :root {
3
+ --radius-xs: 6px;
4
+ --radius-sm: 8px;
5
+ --radius-md: 12px;
6
+ --radius-lg: 16px;
7
+ --radius-xl: 20px;
8
+ --radius-2xl: 24px;
9
+ --radius-full: 9999px;
10
+ --ease-standard: cubic-bezier(0.32, 0.72, 0, 1);
11
+ --duration-fast: 150ms;
12
+ --duration-normal: 200ms;
13
+ --duration-base: 250ms;
14
+ --z-floating: 99999;
15
+ --color-on-accent: #ffffff;
16
+ --focus-ring-shadow: 0 0 0 1px var(--color-border), 0 0 0 4px color-mix(in srgb, var(--focus-ring) 30%, transparent);
17
+ }
18
+ :root[data-theme=dark] {
19
+ color-scheme: dark;
20
+ --color-bg: #070708;
21
+ --color-content-bg: #101011;
22
+ --color-surface-0: var(--color-content-bg);
23
+ --color-surface-1: #171719;
24
+ --color-surface-2: #1D1D20;
25
+ --color-surface-3: #2B2B2E;
26
+ --color-text-primary: #f0f0f0;
27
+ --color-text-secondary: #6F717B;
28
+ --color-text-tertiary: var(--color-text-secondary);
29
+ --color-text-muted: #7e808b;
30
+ --color-border-strong: #2B2B2E;
31
+ --color-border: #1D1D20;
32
+ --color-border-soft: #1D1D20;
33
+ --material-regular: #171719;
34
+ --material-regular-border: #1D1D20;
35
+ --glass-bg: rgba(0, 0, 0, 0.2);
36
+ --glass-bg-secondary: rgba(22, 22, 22, 0.27);
37
+ --glass-border: rgba(113, 113, 113, 0.06);
38
+ --glass-blur: blur(20px) saturate(150%);
39
+ --glass-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
40
+ --color-overlay: rgba(17, 17, 17, 0.8);
41
+ --shadow-glass: 0 2px 8px rgba(0, 0, 0, 0.2);
42
+ --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
43
+ --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
44
+ --color-scrollbar: rgba(235, 235, 245, 0.28);
45
+ --color-scrollbar-hover: rgba(235, 235, 245, 0.42);
46
+ --color-autofill-bg: #171719;
47
+ --color-autofill-text: #f0f0f0;
48
+ --accent-blue: #0A84FF;
49
+ --color-brand-primary: #0A84FF;
50
+ --accent-indigo: #5e5ce6;
51
+ --accent-purple: #bf5af2;
52
+ --accent-green: #2dcc70;
53
+ --accent-teal: #64d2ff;
54
+ --accent-yellow: #ffd60a;
55
+ --accent-orange: #ff9f0a;
56
+ --accent-red: #ff453a;
57
+ --color-contrast-high: #ffffff;
58
+ --color-contrast-low: #1D1D20;
59
+ --button-bg: #171719;
60
+ --button-bg-smooth: #101011;
61
+ --button-border: #1D1D20;
62
+ --input-bg: #101011;
63
+ --input-fg: var(--color-text-primary);
64
+ --status-success: #2dcc70;
65
+ --status-success-bg: rgba(45, 204, 112, 0.1);
66
+ --status-success-border: rgba(45, 204, 112, 0.2);
67
+ --status-error: #ff453a;
68
+ --status-error-bg: rgba(255, 69, 58, 0.1);
69
+ --status-error-border: rgba(255, 69, 58, 0.2);
70
+ --status-warning: #ffd60a;
71
+ --status-warning-bg: rgba(255, 214, 10, 0.1);
72
+ --status-warning-border: rgba(255, 214, 10, 0.2);
73
+ --status-info: #0A84FF;
74
+ --status-info-bg: rgba(10, 132, 255, 0.15);
75
+ --status-info-border: rgba(10, 132, 255, 0.28);
76
+ --hover-bg: rgba(255, 255, 255, 0.04);
77
+ --active-bg: rgba(255, 255, 255, 0.06);
78
+ --selected-indicator: var(--accent-blue);
79
+ --focus-ring: var(--accent-blue);
80
+ --syntax-key: #93c5fd;
81
+ --syntax-string: #86efac;
82
+ --syntax-primitive: #fbbf24;
83
+ --syntax-null: #94a3b8;
84
+ --syntax-meta: #64748b;
85
+ }
86
+ :root[data-theme=light] {
87
+ color-scheme: light;
88
+ --color-bg: #FFF;
89
+ --color-content-bg: #FFFFFF;
90
+ --color-surface-0: var(--color-content-bg);
91
+ --color-surface-1: #FFFFFF;
92
+ --color-surface-2: #F6F6FA;
93
+ --color-surface-3: #EFEFF4;
94
+ --color-text-primary: #1D1D1F;
95
+ --color-text-secondary: #6E6E73;
96
+ --color-text-tertiary: var(--color-text-secondary);
97
+ --color-text-muted: #8E8E93;
98
+ --color-border-strong: rgba(60, 60, 67, 0.18);
99
+ --color-border: rgba(60, 60, 67, 0.12);
100
+ --color-border-soft: rgba(60, 60, 67, 0.08);
101
+ --material-regular: rgba(255, 255, 255, 0.74);
102
+ --material-regular-border: rgba(60, 60, 67, 0.08);
103
+ --glass-bg: var(--material-regular);
104
+ --glass-bg-secondary: rgba(242, 242, 247, 0.72);
105
+ --glass-border: var(--material-regular-border);
106
+ --glass-blur: blur(20px) saturate(180%);
107
+ --glass-shadow: 0 6px 18px rgba(15, 23, 42, 0.04), inset 0 0 0 0.5px rgba(255, 255, 255, 0.62);
108
+ --color-overlay: rgba(255, 255, 255, 0.82);
109
+ --shadow-glass: 0 4px 14px rgba(15, 23, 42, 0.035), 0 1px 2px rgba(15, 23, 42, 0.02);
110
+ --shadow-elevated:
111
+ 0 10px 28px rgba(15, 23, 42, 0.06),
112
+ 0 2px 6px rgba(15, 23, 42, 0.03),
113
+ 0 0 0 0.5px rgba(60, 60, 67, 0.06);
114
+ --shadow-card:
115
+ 0 4px 16px rgba(15, 23, 42, 0.04),
116
+ 0 1px 3px rgba(15, 23, 42, 0.025),
117
+ 0 0 0 0.5px rgba(60, 60, 67, 0.06);
118
+ --color-scrollbar: rgba(60, 60, 67, 0.28);
119
+ --color-scrollbar-hover: rgba(60, 60, 67, 0.42);
120
+ --color-contrast-high: #1D1D1F;
121
+ --color-contrast-low: #D1D1D6;
122
+ --color-autofill-bg: #FFFFFF;
123
+ --color-autofill-text: #1D1D1F;
124
+ --button-bg: rgba(60, 60, 67, 0.032);
125
+ --button-bg-smooth: rgba(60, 60, 67, 0.02);
126
+ --button-border: rgba(60, 60, 67, 0.1);
127
+ --input-bg: #FFFFFF;
128
+ --input-fg: var(--color-text-primary);
129
+ --accent-blue: #007aff;
130
+ --color-brand-primary: #007aff;
131
+ --accent-indigo: #5856d6;
132
+ --accent-purple: #af52de;
133
+ --accent-green: #34c759;
134
+ --accent-teal: #5ac8fa;
135
+ --accent-yellow: #ffcc00;
136
+ --accent-orange: #ff9500;
137
+ --accent-red: #ff3b30;
138
+ --status-success: #34c759;
139
+ --status-success-bg: rgba(52, 199, 89, 0.12);
140
+ --status-success-border: rgba(52, 199, 89, 0.24);
141
+ --status-error: #ff3b30;
142
+ --status-error-bg: rgba(255, 59, 48, 0.12);
143
+ --status-error-border: rgba(255, 59, 48, 0.24);
144
+ --status-warning: #ffcc00;
145
+ --status-warning-bg: rgba(255, 204, 0, 0.15);
146
+ --status-warning-border: rgba(255, 204, 0, 0.3);
147
+ --status-info: #007aff;
148
+ --status-info-bg: rgba(0, 122, 255, 0.1);
149
+ --status-info-border: rgba(0, 122, 255, 0.2);
150
+ --hover-bg: rgba(60, 60, 67, 0.03);
151
+ --active-bg: rgba(60, 60, 67, 0.05);
152
+ --selected-indicator: #007aff;
153
+ --focus-ring: #007aff;
154
+ --syntax-key: #2563eb;
155
+ --syntax-string: #16a34a;
156
+ --syntax-primitive: #d97706;
157
+ --syntax-null: #6b7280;
158
+ --syntax-meta: #9ca3af;
159
+ }
160
+
161
+ /* src/shared/presentation/assets/stylesheets/general.css */
162
+ .m-0 {
163
+ margin: 0;
164
+ }
165
+ .mt-025 {
166
+ margin-top: 0.25rem;
167
+ }
168
+ .mt-05 {
169
+ margin-top: 0.5rem;
170
+ }
171
+ .mt-1 {
172
+ margin-top: 1rem;
173
+ }
174
+ .mt-1-5 {
175
+ margin-top: 1.5rem;
176
+ }
177
+ .mt-2 {
178
+ margin-top: 2rem;
179
+ }
180
+ .mt-3 {
181
+ margin-top: 3rem;
182
+ }
183
+ .mb-0 {
184
+ margin-bottom: 0;
185
+ }
186
+ .mb-025 {
187
+ margin-bottom: 0.25rem;
188
+ }
189
+ .mb-05 {
190
+ margin-bottom: 0.5rem;
191
+ }
192
+ .mb-075 {
193
+ margin-bottom: 0.75rem;
194
+ }
195
+ .mb-1 {
196
+ margin-bottom: 1rem;
197
+ }
198
+ .mb-1-5 {
199
+ margin-bottom: 1.5rem;
200
+ }
201
+ .mb-2 {
202
+ margin-bottom: 2rem;
203
+ }
204
+ .mb-3 {
205
+ margin-bottom: 3rem;
206
+ }
207
+ .mx-auto {
208
+ margin-left: auto;
209
+ margin-right: auto;
210
+ }
211
+ .p-0 {
212
+ padding: 0;
213
+ }
214
+ .px-1 {
215
+ padding: 0 1rem;
216
+ }
217
+ .p-025 {
218
+ padding: 0.25rem;
219
+ }
220
+ .p-05 {
221
+ padding: 0.5rem;
222
+ }
223
+ .p-075 {
224
+ padding: 0.75rem;
225
+ }
226
+ .p-1 {
227
+ padding: 1rem;
228
+ }
229
+ .p-1-5 {
230
+ padding: 1.5rem;
231
+ }
232
+ .p-2 {
233
+ padding: 2rem;
234
+ }
235
+ .p-3 {
236
+ padding: 3rem;
237
+ }
238
+ .p-relative {
239
+ position: relative;
240
+ }
241
+ .p-sticky {
242
+ position: sticky;
243
+ }
244
+ .p-absolute {
245
+ position: absolute;
246
+ }
247
+ .p-fixed {
248
+ position: fixed;
249
+ }
250
+ .gap-0 {
251
+ gap: 0;
252
+ }
253
+ .gap-01 {
254
+ gap: .1rem;
255
+ }
256
+ .gap-02 {
257
+ gap: .2rem;
258
+ }
259
+ .gap-025 {
260
+ gap: 0.25rem;
261
+ }
262
+ .gap-035 {
263
+ gap: 0.35rem;
264
+ }
265
+ .gap-1 {
266
+ gap: 1rem;
267
+ }
268
+ .gap-05 {
269
+ gap: 0.5rem;
270
+ }
271
+ .gap-075 {
272
+ gap: 0.75rem;
273
+ }
274
+ .gap-1-5 {
275
+ gap: 1.5rem;
276
+ }
277
+ .gap-2 {
278
+ gap: 2rem;
279
+ }
280
+ .gap-3 {
281
+ gap: 3rem;
282
+ }
283
+ .w-max {
284
+ width: 100%;
285
+ }
286
+ .w-50 {
287
+ width: 50%;
288
+ }
289
+ .h-max {
290
+ height: 100%;
291
+ }
292
+ .mw-max {
293
+ max-width: 100%;
294
+ }
295
+ .mh-max {
296
+ max-height: 100%;
297
+ }
298
+ .object-contain {
299
+ object-fit: contain;
300
+ }
301
+ .wh-max {
302
+ width: 100vw;
303
+ }
304
+ .vh-max {
305
+ height: 100dvh;
306
+ }
307
+ .y-scroll {
308
+ overflow-y: scroll;
309
+ }
310
+ .y-auto {
311
+ overflow-y: auto;
312
+ }
313
+ .x-auto {
314
+ overflow-x: auto;
315
+ -webkit-overflow-scrolling: touch;
316
+ }
317
+ .x-scroll {
318
+ overflow-x: scroll;
319
+ -webkit-overflow-scrolling: touch;
320
+ }
321
+ .overflow-auto {
322
+ overflow: auto;
323
+ }
324
+ .overflow-hidden {
325
+ overflow: hidden;
326
+ }
327
+ .inset-0 {
328
+ inset: 0;
329
+ }
330
+ .top-0 {
331
+ top: 0;
332
+ }
333
+ .top-1 {
334
+ top: 1rem;
335
+ }
336
+ .left-0 {
337
+ left: 0;
338
+ }
339
+ .left-1 {
340
+ left: 1rem;
341
+ }
342
+ .bottom-0 {
343
+ bottom: 0;
344
+ }
345
+ .bottom-1 {
346
+ bottom: 1rem;
347
+ }
348
+ .right-0 {
349
+ right: 0;
350
+ }
351
+ .right-1 {
352
+ right: 1rem;
353
+ }
354
+ .z-5 {
355
+ z-index: 5;
356
+ }
357
+ .z-10 {
358
+ z-index: 10;
359
+ }
360
+ .z-20 {
361
+ z-index: 20;
362
+ }
363
+ .d-flex {
364
+ display: flex;
365
+ }
366
+ .d-inline-flex {
367
+ display: inline-flex;
368
+ }
369
+ .items-baseline {
370
+ align-items: baseline;
371
+ }
372
+ .flex-1 {
373
+ flex: 1;
374
+ }
375
+ .items-start {
376
+ align-items: start;
377
+ }
378
+ .items-end {
379
+ align-items: flex-end;
380
+ }
381
+ .items-center,
382
+ .flex-center {
383
+ align-items: center;
384
+ }
385
+ .min-h-0 {
386
+ min-height: 0;
387
+ }
388
+ .min-w-0 {
389
+ min-width: 0;
390
+ }
391
+ .content-center,
392
+ .flex-center {
393
+ justify-content: center;
394
+ }
395
+ .content-around {
396
+ justify-content: space-around;
397
+ }
398
+ .content-between {
399
+ justify-content: space-between;
400
+ }
401
+ .content-end {
402
+ justify-content: flex-end;
403
+ }
404
+ .row-reverse {
405
+ flex-direction: row-reverse;
406
+ }
407
+ .row {
408
+ flex-direction: row;
409
+ }
410
+ .flex-wrap {
411
+ flex-wrap: wrap;
412
+ }
413
+ .f-shrink-0 {
414
+ flex-shrink: 0;
415
+ }
416
+ .d-flex.column {
417
+ flex-direction: column;
418
+ }
419
+ .d-none {
420
+ display: none;
421
+ }
422
+ .d-block {
423
+ display: block;
424
+ }
425
+ .d-grid {
426
+ display: grid;
427
+ }
428
+ .grid-cols-2 {
429
+ grid-template-columns: repeat(2, minmax(0, 1fr));
430
+ }
431
+ .grid-cols-3 {
432
+ grid-template-columns: repeat(3, minmax(0, 1fr));
433
+ }
434
+ .grid-cols-4 {
435
+ grid-template-columns: repeat(4, minmax(0, 1fr));
436
+ }
437
+ .grid-auto-fit {
438
+ grid-template-columns: repeat(auto-fit, minmax(var(--grid-min, 180px), 1fr));
439
+ }
440
+ .grid-auto-fill {
441
+ grid-template-columns: repeat(auto-fill, minmax(var(--grid-min, 180px), 1fr));
442
+ }
443
+ .place-items-center {
444
+ place-items: center;
445
+ }
446
+ .text-center {
447
+ text-align: center;
448
+ }
449
+ .text-right {
450
+ text-align: right;
451
+ }
452
+ .font-size-075 {
453
+ font-size: 0.6875rem;
454
+ }
455
+ .font-size-05 {
456
+ font-size: .7rem;
457
+ }
458
+ .font-size-1 {
459
+ font-size: 0.75rem;
460
+ }
461
+ .font-size-1-5 {
462
+ font-size: 0.8125rem;
463
+ }
464
+ .font-size-2 {
465
+ font-size: 0.875rem;
466
+ }
467
+ .font-size-2-5 {
468
+ font-size: 0.95rem;
469
+ }
470
+ .font-size-3 {
471
+ font-size: 1rem;
472
+ }
473
+ .font-size-4 {
474
+ font-size: 1.25rem;
475
+ }
476
+ .font-size-5 {
477
+ font-size: 1.5rem;
478
+ }
479
+ .font-size-5-5 {
480
+ font-size: 1.8rem;
481
+ }
482
+ .font-size-6 {
483
+ font-size: 2rem;
484
+ }
485
+ .font-weight-4 {
486
+ font-weight: 400;
487
+ }
488
+ .font-weight-5 {
489
+ font-weight: 500;
490
+ }
491
+ .font-weight-5-5 {
492
+ font-weight: 550;
493
+ }
494
+ .font-weight-6 {
495
+ font-weight: 600;
496
+ }
497
+ .color-muted-foreground {
498
+ color: var(--color-text-muted);
499
+ }
500
+ .color-primary {
501
+ color: var(--color-text-primary);
502
+ }
503
+ .color-secondary {
504
+ color: var(--color-text-secondary);
505
+ }
506
+ .color-muted {
507
+ color: var(--color-text-muted);
508
+ }
509
+ .color-tertiary {
510
+ color: var(--color-text-tertiary);
511
+ }
512
+ .color-danger {
513
+ color: var(--status-error);
514
+ }
515
+ .color-success {
516
+ color: var(--status-success);
517
+ }
518
+ .color-warning {
519
+ color: var(--status-warning);
520
+ }
521
+ .color-info {
522
+ color: var(--status-info);
523
+ }
524
+ .color-brand {
525
+ color: var(--color-brand-primary);
526
+ }
527
+ .line-height-1 {
528
+ line-height: 1;
529
+ }
530
+ .line-height-1-2 {
531
+ line-height: 1.2;
532
+ }
533
+ .line-height-1-4 {
534
+ line-height: 1.4;
535
+ }
536
+ .line-height-5 {
537
+ line-height: 1.5;
538
+ }
539
+ .text-uppercase {
540
+ text-transform: uppercase;
541
+ }
542
+ .text-eyebrow {
543
+ font-size: 0.7rem;
544
+ font-weight: 600;
545
+ text-transform: uppercase;
546
+ letter-spacing: 0.05em;
547
+ color: var(--color-text-muted);
548
+ }
549
+ .tabular-nums {
550
+ font-variant-numeric: tabular-nums;
551
+ font-feature-settings: "tnum", "lnum";
552
+ }
553
+ .font-mono {
554
+ font-family: var(--font-mono);
555
+ }
556
+ .b-soft {
557
+ border: 1px solid var(--color-border-soft);
558
+ }
559
+ .border-bottom-soft {
560
+ border-bottom: 1px solid var(--color-border-soft);
561
+ }
562
+ .border-top-soft {
563
+ border-top: 1px solid var(--color-border-soft);
564
+ }
565
+ .b-none {
566
+ border: none;
567
+ }
568
+ .radius-xs {
569
+ border-radius: var(--radius-xs);
570
+ }
571
+ .radius-sm {
572
+ border-radius: var(--radius-sm);
573
+ }
574
+ .radius-md {
575
+ border-radius: var(--radius-md);
576
+ }
577
+ .radius-lg {
578
+ border-radius: var(--radius-lg);
579
+ }
580
+ .radius-xl {
581
+ border-radius: var(--radius-xl);
582
+ }
583
+ .radius-2xl {
584
+ border-radius: var(--radius-2xl);
585
+ }
586
+ .radius-full {
587
+ border-radius: var(--radius-full);
588
+ }
589
+ .shadow-card {
590
+ box-shadow: var(--shadow-card);
591
+ }
592
+ .shadow-elevated {
593
+ box-shadow: var(--shadow-elevated);
594
+ }
595
+ .shadow-glass {
596
+ box-shadow: var(--shadow-glass);
597
+ }
598
+ .volt-divider {
599
+ background: var(--color-border-soft);
600
+ }
601
+ .volt-divider--horizontal {
602
+ height: 1px;
603
+ width: 100%;
604
+ }
605
+ .volt-divider--vertical {
606
+ width: 1px;
607
+ height: 100%;
608
+ }
609
+ @keyframes animate-pulse {
610
+ 0%, 100% {
611
+ opacity: 1;
612
+ }
613
+ 50% {
614
+ opacity: 0.4;
615
+ }
616
+ }
617
+ @keyframes animate-pulse-glow {
618
+ 0%, 100% {
619
+ opacity: 1;
620
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
621
+ }
622
+ 50% {
623
+ opacity: 0.8;
624
+ box-shadow: 0 0 0 4px currentColor;
625
+ }
626
+ }
627
+ @keyframes animate-spin {
628
+ from {
629
+ transform: rotate(0deg);
630
+ }
631
+ to {
632
+ transform: rotate(360deg);
633
+ }
634
+ }
635
+ @keyframes animate-skeleton {
636
+ 0%, 100% {
637
+ opacity: 0.4;
638
+ }
639
+ 50% {
640
+ opacity: 0.7;
641
+ }
642
+ }
643
+ @keyframes animate-fade-in {
644
+ from {
645
+ opacity: 0;
646
+ transform: translateY(10px);
647
+ }
648
+ to {
649
+ opacity: 1;
650
+ transform: translateY(0);
651
+ }
652
+ }
653
+ .scrollbar-none {
654
+ scrollbar-width: none;
655
+ }
656
+ .scrollbar-none::-webkit-scrollbar {
657
+ display: none;
658
+ }
659
+ .center-x {
660
+ left: 50%;
661
+ transform: translateX(-50%);
662
+ }
663
+ .u-select-none {
664
+ user-select: none;
665
+ }
666
+ .cursor-pointer {
667
+ cursor: pointer;
668
+ }
669
+ .focus-ring:focus-visible {
670
+ outline: none;
671
+ box-shadow: var(--focus-ring-shadow);
672
+ }
673
+ .screen-vh {
674
+ min-height: 100dvh;
675
+ }
676
+ .sr-only {
677
+ position: absolute !important;
678
+ width: 1px;
679
+ height: 1px;
680
+ padding: 0;
681
+ margin: -1px;
682
+ overflow: hidden;
683
+ clip: rect(0, 0, 0, 0);
684
+ white-space: nowrap;
685
+ border: 0;
686
+ }
687
+ .transition-fast {
688
+ transition-property:
689
+ background-color,
690
+ border-color,
691
+ color,
692
+ box-shadow,
693
+ opacity,
694
+ transform;
695
+ transition-duration: var(--duration-fast);
696
+ transition-timing-function: var(--ease-standard);
697
+ }
698
+ .transition-normal {
699
+ transition-property:
700
+ background-color,
701
+ border-color,
702
+ color,
703
+ box-shadow,
704
+ opacity,
705
+ transform;
706
+ transition-duration: var(--duration-normal);
707
+ transition-timing-function: var(--ease-standard);
708
+ }
709
+ .list-item-hoverable {
710
+ padding: 0.75rem;
711
+ border-radius: var(--radius-sm);
712
+ transition: background-color 0.2s ease, box-shadow 0.2s ease;
713
+ }
714
+ @media (hover: hover) and (pointer: fine) {
715
+ .list-item-hoverable:hover {
716
+ background: var(--color-surface-2);
717
+ }
718
+ }
719
+ .list-item-hoverable:focus-visible {
720
+ background: var(--color-surface-2);
721
+ box-shadow: 0 0 0 2px var(--focus-ring);
722
+ }
723
+ .list-item-hoverable:active {
724
+ background: var(--active-bg);
725
+ }
726
+ .panel-header-bordered {
727
+ padding: 0.75rem 1rem;
728
+ border-bottom: 1px solid var(--color-border-soft);
729
+ }
730
+ .panel-footer-bordered {
731
+ padding: 0.75rem 1rem;
732
+ border-top: 1px solid var(--color-border-soft);
733
+ }
734
+ @media (prefers-reduced-motion: reduce) {
735
+ *,
736
+ *::before,
737
+ *::after {
738
+ animation-duration: 0.01ms !important;
739
+ animation-iteration-count: 1 !important;
740
+ scroll-behavior: auto !important;
741
+ transition-duration: 0.01ms !important;
742
+ }
743
+ .transition-fast,
744
+ .transition-normal,
745
+ .list-item-hoverable {
746
+ transition: none !important;
747
+ }
748
+ }
749
+ @media (max-width: 768px) {
750
+ .sm\:p-1 {
751
+ padding: 1rem;
752
+ }
753
+ .sm\:w-max {
754
+ width: 100%;
755
+ }
756
+ .sm\:column {
757
+ flex-direction: column;
758
+ }
759
+ .sm\:text-center {
760
+ text-align: center;
761
+ }
762
+ .sm\:items-start {
763
+ align-items: flex-start;
764
+ }
765
+ .sm\:gap-05 {
766
+ gap: 0.5rem;
767
+ }
768
+ .sm\:gap-1 {
769
+ gap: 1rem;
770
+ }
771
+ .sm\:gap-0 {
772
+ gap: 0;
773
+ }
774
+ .sm\:a-self-end {
775
+ align-self: flex-end;
776
+ }
777
+ .sm\:font-size-4 {
778
+ font-size: 1.25rem;
779
+ }
780
+ .sm\:font-size-2 {
781
+ font-size: 0.875rem;
782
+ }
783
+ .sm\:d-block {
784
+ display: block;
785
+ }
786
+ .sm\:d-none {
787
+ display: none;
788
+ }
789
+ .sm\:d-flex {
790
+ display: flex;
791
+ }
792
+ }
793
+ .table-scroll-wrapper {
794
+ width: 100%;
795
+ overflow-x: auto;
796
+ -webkit-overflow-scrolling: touch;
797
+ }
798
+
799
+ /* src/styles.css */
800
+ /*# sourceMappingURL=styles.css.map */