@ohhwells/bridge 0.1.15 → 0.1.16-next.12

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/styles.css CHANGED
@@ -3,6 +3,9 @@
3
3
  @layer ohw-theme {
4
4
  :root, :host {
5
5
  --font-sans: Figtree, sans-serif;
6
+ --color-red-500: oklch(63.7% 0.237 25.331);
7
+ --color-black: #000;
8
+ --color-white: #fff;
6
9
  --spacing: 0.25rem;
7
10
  --text-xs: 12px;
8
11
  --text-xs--line-height: 16px;
@@ -14,48 +17,46 @@
14
17
  --text-lg--line-height: 28px;
15
18
  --text-xl: 20px;
16
19
  --text-xl--line-height: 28px;
17
- --text-2xl: 24px;
18
- --text-2xl--line-height: 32px;
19
- --text-3xl: 30px;
20
- --text-3xl--line-height: 36px;
21
20
  --text-4xl: 36px;
22
21
  --text-4xl--line-height: 40px;
23
22
  --text-5xl: 48px;
24
23
  --text-5xl--line-height: 1;
25
- --text-6xl: 60px;
26
- --text-6xl--line-height: 1;
27
- --text-7xl: 72px;
28
- --text-7xl--line-height: 1;
29
- --text-8xl: 96px;
30
- --text-8xl--line-height: 1;
31
- --text-9xl: 128px;
32
- --text-9xl--line-height: 1;
24
+ --font-weight-normal: 400;
33
25
  --font-weight-medium: 500;
26
+ --font-weight-semibold: 600;
27
+ --font-weight-bold: 700;
28
+ --leading-tight: 1.25;
34
29
  --radius-md: 6px;
30
+ --radius-lg: 0.5rem;
31
+ --radius-xl: 0.75rem;
35
32
  --default-transition-duration: 150ms;
36
33
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
34
+ --font-display: 'Instrument Serif', 'Times New Roman', serif;
35
+ --font-body: 'Red Hat Display', system-ui, sans-serif;
36
+ --color-primary: var(--ohw-primary, #0885FE);
37
+ --color-primary-foreground: var(--ohw-primary-foreground, #FAFAF9);
37
38
  --color-background: var(--ohw-background, #ffffff);
38
39
  --color-foreground: var(--ohw-foreground, #020617);
40
+ --color-secondary: var(--ohw-secondary, #f1f5f9);
41
+ --color-secondary-foreground: var(--ohw-secondary-foreground, #0f172a);
39
42
  --color-muted: var(--ohw-muted, #f1f5f9);
40
43
  --color-muted-foreground: var(--ohw-muted-foreground, #64748b);
41
44
  --color-accent: var(--ohw-accent, #f1f5f9);
42
45
  --color-accent-foreground: var(--ohw-accent-foreground, #0f172a);
43
46
  --color-destructive: var(--ohw-destructive, #dc2626);
47
+ --color-destructive-foreground: var(--ohw-destructive-foreground, #f8fafc);
44
48
  --color-input: var(--ohw-input, #e2e8f0);
45
49
  --color-ring: var(--ohw-ring, #64748b);
46
- --text-9xl--letter-spacing: -0.025em;
47
- --text-8xl--letter-spacing: -0.025em;
48
- --text-7xl--letter-spacing: -0.025em;
49
- --text-6xl--letter-spacing: -0.025em;
50
50
  --text-5xl--letter-spacing: -0.025em;
51
51
  --text-4xl--letter-spacing: -0.025em;
52
- --text-3xl--letter-spacing: -0.025em;
53
- --text-2xl--letter-spacing: -0.025em;
54
52
  --text-xl--letter-spacing: -0.025em;
55
53
  --text-lg--letter-spacing: 0em;
56
54
  --text-base--letter-spacing: 0em;
57
55
  --text-sm--letter-spacing: 0em;
58
56
  --text-xs--letter-spacing: 0em;
57
+ --text-body: 18px;
58
+ --text-body--line-height: 1.5;
59
+ --tracking-display-tight: -0.030em;
59
60
  }
60
61
  }
61
62
  .pointer-events-auto {
@@ -82,6 +83,42 @@
82
83
  .sticky {
83
84
  position: sticky;
84
85
  }
86
+ .inset-0 {
87
+ inset: calc(var(--spacing) * 0);
88
+ }
89
+ .top-0 {
90
+ top: calc(var(--spacing) * 0);
91
+ }
92
+ .top-1\/2 {
93
+ top: calc(1 / 2 * 100%);
94
+ }
95
+ .top-2\.5 {
96
+ top: calc(var(--spacing) * 2.5);
97
+ }
98
+ .right-0 {
99
+ right: calc(var(--spacing) * 0);
100
+ }
101
+ .right-1\.5 {
102
+ right: calc(var(--spacing) * 1.5);
103
+ }
104
+ .bottom-0 {
105
+ bottom: calc(var(--spacing) * 0);
106
+ }
107
+ .left-0 {
108
+ left: calc(var(--spacing) * 0);
109
+ }
110
+ .left-1\/2 {
111
+ left: calc(1 / 2 * 100%);
112
+ }
113
+ .z-10 {
114
+ z-index: 10;
115
+ }
116
+ .z-50 {
117
+ z-index: 50;
118
+ }
119
+ .z-2147483646 {
120
+ z-index: 2147483646;
121
+ }
85
122
  .z-2147483647 {
86
123
  z-index: 2147483647;
87
124
  }
@@ -103,6 +140,21 @@
103
140
  max-width: 96rem;
104
141
  }
105
142
  }
143
+ .m-0 {
144
+ margin: calc(var(--spacing) * 0);
145
+ }
146
+ .mx-auto {
147
+ margin-inline: auto;
148
+ }
149
+ .mt-0\.5 {
150
+ margin-top: calc(var(--spacing) * 0.5);
151
+ }
152
+ .mb-8 {
153
+ margin-bottom: calc(var(--spacing) * 8);
154
+ }
155
+ .box-border {
156
+ box-sizing: border-box;
157
+ }
106
158
  .block {
107
159
  display: block;
108
160
  }
@@ -121,15 +173,30 @@
121
173
  .inline-flex {
122
174
  display: inline-flex;
123
175
  }
176
+ .h-7 {
177
+ height: calc(var(--spacing) * 7);
178
+ }
124
179
  .h-8 {
125
180
  height: calc(var(--spacing) * 8);
126
181
  }
182
+ .h-9 {
183
+ height: calc(var(--spacing) * 9);
184
+ }
127
185
  .h-10 {
128
186
  height: calc(var(--spacing) * 10);
129
187
  }
188
+ .h-\[70px\] {
189
+ height: 70px;
190
+ }
191
+ .h-\[264px\] {
192
+ height: 264px;
193
+ }
130
194
  .h-dvh {
131
195
  height: 100dvh;
132
196
  }
197
+ .h-px {
198
+ height: 1px;
199
+ }
133
200
  .h-screen {
134
201
  height: 100vh;
135
202
  }
@@ -139,39 +206,142 @@
139
206
  .min-h-screen {
140
207
  min-height: 100vh;
141
208
  }
209
+ .w-7 {
210
+ width: calc(var(--spacing) * 7);
211
+ }
212
+ .w-8 {
213
+ width: calc(var(--spacing) * 8);
214
+ }
215
+ .w-10 {
216
+ width: calc(var(--spacing) * 10);
217
+ }
218
+ .w-14 {
219
+ width: calc(var(--spacing) * 14);
220
+ }
221
+ .w-full {
222
+ width: 100%;
223
+ }
224
+ .max-w-\[1280px\] {
225
+ max-width: 1280px;
226
+ }
227
+ .min-w-0 {
228
+ min-width: calc(var(--spacing) * 0);
229
+ }
142
230
  .min-w-8 {
143
231
  min-width: calc(var(--spacing) * 8);
144
232
  }
145
233
  .min-w-10 {
146
234
  min-width: calc(var(--spacing) * 10);
147
235
  }
236
+ .flex-1 {
237
+ flex: 1;
238
+ }
239
+ .shrink-0 {
240
+ flex-shrink: 0;
241
+ }
148
242
  .grow {
149
243
  flex-grow: 1;
150
244
  }
245
+ .-translate-x-1\/2 {
246
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
247
+ translate: var(--tw-translate-x) var(--tw-translate-y);
248
+ }
249
+ .-translate-y-1\/2 {
250
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
251
+ translate: var(--tw-translate-x) var(--tw-translate-y);
252
+ }
151
253
  .transform {
152
254
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
153
255
  }
256
+ .cursor-default {
257
+ cursor: default;
258
+ }
154
259
  .cursor-pointer {
155
260
  cursor: pointer;
156
261
  }
157
262
  .resize {
158
263
  resize: both;
159
264
  }
265
+ .flex-col {
266
+ flex-direction: column;
267
+ }
160
268
  .items-center {
161
269
  align-items: center;
162
270
  }
271
+ .items-end {
272
+ align-items: flex-end;
273
+ }
274
+ .items-start {
275
+ align-items: flex-start;
276
+ }
277
+ .items-stretch {
278
+ align-items: stretch;
279
+ }
280
+ .justify-between {
281
+ justify-content: space-between;
282
+ }
163
283
  .justify-center {
164
284
  justify-content: center;
165
285
  }
286
+ .justify-end {
287
+ justify-content: flex-end;
288
+ }
166
289
  .gap-1 {
167
290
  gap: calc(var(--spacing) * 1);
168
291
  }
292
+ .gap-1\.5 {
293
+ gap: calc(var(--spacing) * 1.5);
294
+ }
169
295
  .gap-2 {
170
296
  gap: calc(var(--spacing) * 2);
171
297
  }
298
+ .gap-3 {
299
+ gap: calc(var(--spacing) * 3);
300
+ }
301
+ .gap-4 {
302
+ gap: calc(var(--spacing) * 4);
303
+ }
304
+ .gap-6 {
305
+ gap: calc(var(--spacing) * 6);
306
+ }
307
+ .gap-10 {
308
+ gap: calc(var(--spacing) * 10);
309
+ }
310
+ .gap-16 {
311
+ gap: calc(var(--spacing) * 16);
312
+ }
313
+ .gap-\[60px\] {
314
+ gap: 60px;
315
+ }
316
+ .gap-px {
317
+ gap: 1px;
318
+ }
319
+ .truncate {
320
+ overflow: hidden;
321
+ text-overflow: ellipsis;
322
+ white-space: nowrap;
323
+ }
324
+ .overflow-hidden {
325
+ overflow: hidden;
326
+ }
327
+ .overflow-x-auto {
328
+ overflow-x: auto;
329
+ }
330
+ .rounded-\[10px\] {
331
+ border-radius: 10px;
332
+ }
333
+ .rounded-full {
334
+ border-radius: calc(infinity * 1px);
335
+ }
336
+ .rounded-lg {
337
+ border-radius: var(--radius-lg);
338
+ }
172
339
  .rounded-md {
173
340
  border-radius: var(--radius-md);
174
341
  }
342
+ .rounded-xl {
343
+ border-radius: var(--radius-xl);
344
+ }
175
345
  .border {
176
346
  border-style: var(--tw-border-style);
177
347
  border-width: 1px;
@@ -180,18 +350,75 @@
180
350
  border-style: var(--tw-border-style);
181
351
  border-width: 0px;
182
352
  }
353
+ .border-2 {
354
+ border-style: var(--tw-border-style);
355
+ border-width: 2px;
356
+ }
357
+ .border-dashed {
358
+ --tw-border-style: dashed;
359
+ border-style: dashed;
360
+ }
361
+ .border-none {
362
+ --tw-border-style: none;
363
+ border-style: none;
364
+ }
365
+ .border-\[\#E7E5E4\] {
366
+ border-color: #E7E5E4;
367
+ }
183
368
  .border-input {
184
369
  border-color: var(--color-input);
185
370
  }
371
+ .border-transparent {
372
+ border-color: transparent;
373
+ }
374
+ .bg-\(--color-light\,\#FEFFF0\) {
375
+ background-color: var(--color-light,#FEFFF0);
376
+ }
377
+ .bg-\[\#F5F5F4\] {
378
+ background-color: #F5F5F4;
379
+ }
380
+ .bg-\[\#FAFAF9\] {
381
+ background-color: #FAFAF9;
382
+ }
383
+ .bg-black\/20 {
384
+ background-color: color-mix(in srgb, #000 20%, transparent);
385
+ @supports (color: color-mix(in lab, red, red)) {
386
+ background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
387
+ }
388
+ }
389
+ .bg-destructive {
390
+ background-color: var(--color-destructive);
391
+ }
186
392
  .bg-muted {
187
393
  background-color: var(--color-muted);
188
394
  }
395
+ .bg-primary {
396
+ background-color: var(--color-primary);
397
+ }
398
+ .bg-secondary {
399
+ background-color: var(--color-secondary);
400
+ }
189
401
  .bg-transparent {
190
402
  background-color: transparent;
191
403
  }
404
+ .bg-white {
405
+ background-color: var(--color-white);
406
+ }
407
+ .p-0 {
408
+ padding: calc(var(--spacing) * 0);
409
+ }
192
410
  .p-1 {
193
411
  padding: calc(var(--spacing) * 1);
194
412
  }
413
+ .p-6 {
414
+ padding: calc(var(--spacing) * 6);
415
+ }
416
+ .p-12 {
417
+ padding: calc(var(--spacing) * 12);
418
+ }
419
+ .px-1 {
420
+ padding-inline: calc(var(--spacing) * 1);
421
+ }
195
422
  .px-1\.5 {
196
423
  padding-inline: calc(var(--spacing) * 1.5);
197
424
  }
@@ -201,51 +428,64 @@
201
428
  .px-2\.5 {
202
429
  padding-inline: calc(var(--spacing) * 2.5);
203
430
  }
431
+ .px-3 {
432
+ padding-inline: calc(var(--spacing) * 3);
433
+ }
434
+ .px-5 {
435
+ padding-inline: calc(var(--spacing) * 5);
436
+ }
437
+ .px-7 {
438
+ padding-inline: calc(var(--spacing) * 7);
439
+ }
440
+ .px-8 {
441
+ padding-inline: calc(var(--spacing) * 8);
442
+ }
443
+ .py-0\.5 {
444
+ padding-block: calc(var(--spacing) * 0.5);
445
+ }
204
446
  .py-1 {
205
447
  padding-block: calc(var(--spacing) * 1);
206
448
  }
207
- .font-sans {
208
- font-family: var(--font-sans);
449
+ .py-1\.5 {
450
+ padding-block: calc(var(--spacing) * 1.5);
209
451
  }
210
- .text-2xl {
211
- font-size: var(--text-2xl);
212
- line-height: var(--tw-leading, var(--text-2xl--line-height));
213
- letter-spacing: var(--tw-tracking, var(--text-2xl--letter-spacing));
452
+ .py-4 {
453
+ padding-block: calc(var(--spacing) * 4);
214
454
  }
215
- .text-3xl {
216
- font-size: var(--text-3xl);
217
- line-height: var(--tw-leading, var(--text-3xl--line-height));
218
- letter-spacing: var(--tw-tracking, var(--text-3xl--letter-spacing));
455
+ .py-8 {
456
+ padding-block: calc(var(--spacing) * 8);
219
457
  }
220
- .text-4xl {
221
- font-size: var(--text-4xl);
222
- line-height: var(--tw-leading, var(--text-4xl--line-height));
223
- letter-spacing: var(--tw-tracking, var(--text-4xl--letter-spacing));
458
+ .py-10 {
459
+ padding-block: calc(var(--spacing) * 10);
460
+ }
461
+ .py-12 {
462
+ padding-block: calc(var(--spacing) * 12);
224
463
  }
225
- .text-5xl {
226
- font-size: var(--text-5xl);
227
- line-height: var(--tw-leading, var(--text-5xl--line-height));
228
- letter-spacing: var(--tw-tracking, var(--text-5xl--letter-spacing));
464
+ .py-\[10px\] {
465
+ padding-block: 10px;
229
466
  }
230
- .text-6xl {
231
- font-size: var(--text-6xl);
232
- line-height: var(--tw-leading, var(--text-6xl--line-height));
233
- letter-spacing: var(--tw-tracking, var(--text-6xl--letter-spacing));
467
+ .pt-2 {
468
+ padding-top: calc(var(--spacing) * 2);
234
469
  }
235
- .text-7xl {
236
- font-size: var(--text-7xl);
237
- line-height: var(--tw-leading, var(--text-7xl--line-height));
238
- letter-spacing: var(--tw-tracking, var(--text-7xl--letter-spacing));
470
+ .pb-6 {
471
+ padding-bottom: calc(var(--spacing) * 6);
239
472
  }
240
- .text-8xl {
241
- font-size: var(--text-8xl);
242
- line-height: var(--tw-leading, var(--text-8xl--line-height));
243
- letter-spacing: var(--tw-tracking, var(--text-8xl--letter-spacing));
473
+ .text-center {
474
+ text-align: center;
244
475
  }
245
- .text-9xl {
246
- font-size: var(--text-9xl);
247
- line-height: var(--tw-leading, var(--text-9xl--line-height));
248
- letter-spacing: var(--tw-tracking, var(--text-9xl--letter-spacing));
476
+ .font-body {
477
+ font-family: var(--font-body);
478
+ }
479
+ .font-display {
480
+ font-family: var(--font-display);
481
+ }
482
+ .font-sans {
483
+ font-family: var(--font-sans);
484
+ }
485
+ .text-4xl {
486
+ font-size: var(--text-4xl);
487
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
488
+ letter-spacing: var(--tw-tracking, var(--text-4xl--letter-spacing));
249
489
  }
250
490
  .text-base {
251
491
  font-size: var(--text-base);
@@ -272,26 +512,84 @@
272
512
  line-height: var(--tw-leading, var(--text-xs--line-height));
273
513
  letter-spacing: var(--tw-tracking, var(--text-xs--letter-spacing));
274
514
  }
515
+ .text-body {
516
+ font-size: var(--text-body);
517
+ line-height: var(--tw-leading, var(--text-body--line-height));
518
+ }
519
+ .leading-tight {
520
+ --tw-leading: var(--leading-tight);
521
+ line-height: var(--leading-tight);
522
+ }
523
+ .font-bold {
524
+ --tw-font-weight: var(--font-weight-bold);
525
+ font-weight: var(--font-weight-bold);
526
+ }
275
527
  .font-medium {
276
528
  --tw-font-weight: var(--font-weight-medium);
277
529
  font-weight: var(--font-weight-medium);
278
530
  }
531
+ .font-normal {
532
+ --tw-font-weight: var(--font-weight-normal);
533
+ font-weight: var(--font-weight-normal);
534
+ }
535
+ .font-semibold {
536
+ --tw-font-weight: var(--font-weight-semibold);
537
+ font-weight: var(--font-weight-semibold);
538
+ }
539
+ .tracking-display-tight {
540
+ --tw-tracking: var(--tracking-display-tight);
541
+ letter-spacing: var(--tracking-display-tight);
542
+ }
279
543
  .whitespace-nowrap {
280
544
  white-space: nowrap;
281
545
  }
546
+ .text-\(--color-accent\,\#A89B83\) {
547
+ color: var(--color-accent,#A89B83);
548
+ }
549
+ .text-\(--color-dark\,\#200C02\) {
550
+ color: var(--color-dark,#200C02);
551
+ }
552
+ .text-\[\#0A0A0A\] {
553
+ color: #0A0A0A;
554
+ }
555
+ .text-destructive-foreground {
556
+ color: var(--color-destructive-foreground);
557
+ }
282
558
  .text-foreground {
283
559
  color: var(--color-foreground);
284
560
  }
561
+ .text-primary-foreground {
562
+ color: var(--color-primary-foreground);
563
+ }
564
+ .text-red-500 {
565
+ color: var(--color-red-500);
566
+ }
567
+ .text-secondary-foreground {
568
+ color: var(--color-secondary-foreground);
569
+ }
285
570
  .italic {
286
571
  font-style: italic;
287
572
  }
288
573
  .underline {
289
574
  text-decoration-line: underline;
290
575
  }
576
+ .opacity-50 {
577
+ opacity: 50%;
578
+ }
579
+ .opacity-80 {
580
+ opacity: 80%;
581
+ }
582
+ .opacity-100 {
583
+ opacity: 100%;
584
+ }
291
585
  .shadow-popover {
292
586
  --tw-shadow: 0px 1px 3px var(--tw-shadow-color, rgba(0, 0, 0, 0.1)), 0px 1px 2px var(--tw-shadow-color, rgba(0, 0, 0, 0.06));
293
587
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
294
588
  }
589
+ .shadow-xl {
590
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
591
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
592
+ }
295
593
  .shadow-xs {
296
594
  --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
297
595
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -308,6 +606,11 @@
308
606
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
309
607
  transition-duration: var(--tw-duration, var(--default-transition-duration));
310
608
  }
609
+ .transition-colors {
610
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
611
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
612
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
613
+ }
311
614
  .outline-none {
312
615
  --tw-outline-style: none;
313
616
  outline-style: none;
@@ -319,6 +622,16 @@
319
622
  }
320
623
  }
321
624
  }
625
+ .hover\:bg-destructive\/80 {
626
+ &:hover {
627
+ @media (hover: hover) {
628
+ background-color: var(--color-destructive);
629
+ @supports (color: color-mix(in lab, red, red)) {
630
+ background-color: color-mix(in oklab, var(--color-destructive) 80%, transparent);
631
+ }
632
+ }
633
+ }
634
+ }
322
635
  .hover\:bg-muted {
323
636
  &:hover {
324
637
  @media (hover: hover) {
@@ -326,6 +639,23 @@
326
639
  }
327
640
  }
328
641
  }
642
+ .hover\:bg-primary {
643
+ &:hover {
644
+ @media (hover: hover) {
645
+ background-color: var(--color-primary);
646
+ }
647
+ }
648
+ }
649
+ .hover\:bg-secondary\/80 {
650
+ &:hover {
651
+ @media (hover: hover) {
652
+ background-color: var(--color-secondary);
653
+ @supports (color: color-mix(in lab, red, red)) {
654
+ background-color: color-mix(in oklab, var(--color-secondary) 80%, transparent);
655
+ }
656
+ }
657
+ }
658
+ }
329
659
  .hover\:bg-transparent {
330
660
  &:hover {
331
661
  @media (hover: hover) {
@@ -354,6 +684,29 @@
354
684
  }
355
685
  }
356
686
  }
687
+ .focus\:ring-2 {
688
+ &:focus {
689
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
690
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
691
+ }
692
+ }
693
+ .focus\:ring-ring {
694
+ &:focus {
695
+ --tw-ring-color: var(--color-ring);
696
+ }
697
+ }
698
+ .focus\:ring-offset-2 {
699
+ &:focus {
700
+ --tw-ring-offset-width: 2px;
701
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
702
+ }
703
+ }
704
+ .focus\:outline-none {
705
+ &:focus {
706
+ --tw-outline-style: none;
707
+ outline-style: none;
708
+ }
709
+ }
357
710
  .focus-visible\:border-ring {
358
711
  &:focus-visible {
359
712
  border-color: var(--color-ring);
@@ -378,6 +731,11 @@
378
731
  pointer-events: none;
379
732
  }
380
733
  }
734
+ .disabled\:cursor-not-allowed {
735
+ &:disabled {
736
+ cursor: not-allowed;
737
+ }
738
+ }
381
739
  .disabled\:opacity-50 {
382
740
  &:disabled {
383
741
  opacity: 50%;
@@ -431,6 +789,68 @@
431
789
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
432
790
  }
433
791
  }
792
+ .sm\:contents {
793
+ @media (width >= 40rem) {
794
+ display: contents;
795
+ }
796
+ }
797
+ .sm\:flex {
798
+ @media (width >= 40rem) {
799
+ display: flex;
800
+ }
801
+ }
802
+ .sm\:hidden {
803
+ @media (width >= 40rem) {
804
+ display: none;
805
+ }
806
+ }
807
+ .sm\:w-\[120px\] {
808
+ @media (width >= 40rem) {
809
+ width: 120px;
810
+ }
811
+ }
812
+ .sm\:w-\[200px\] {
813
+ @media (width >= 40rem) {
814
+ width: 200px;
815
+ }
816
+ }
817
+ .sm\:shrink-0 {
818
+ @media (width >= 40rem) {
819
+ flex-shrink: 0;
820
+ }
821
+ }
822
+ .sm\:items-center {
823
+ @media (width >= 40rem) {
824
+ align-items: center;
825
+ }
826
+ }
827
+ .sm\:gap-\[60px\] {
828
+ @media (width >= 40rem) {
829
+ gap: 60px;
830
+ }
831
+ }
832
+ .sm\:p-10 {
833
+ @media (width >= 40rem) {
834
+ padding: calc(var(--spacing) * 10);
835
+ }
836
+ }
837
+ .sm\:px-16 {
838
+ @media (width >= 40rem) {
839
+ padding-inline: calc(var(--spacing) * 16);
840
+ }
841
+ }
842
+ .sm\:py-20 {
843
+ @media (width >= 40rem) {
844
+ padding-block: calc(var(--spacing) * 20);
845
+ }
846
+ }
847
+ .sm\:text-5xl {
848
+ @media (width >= 40rem) {
849
+ font-size: var(--text-5xl);
850
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
851
+ letter-spacing: var(--tw-tracking, var(--text-5xl--letter-spacing));
852
+ }
853
+ }
434
854
  .\[\&_svg\]\:pointer-events-none {
435
855
  & svg {
436
856
  pointer-events: none;
@@ -448,14 +868,16 @@
448
868
  }
449
869
  }
450
870
  [data-ohw-bridge-root] {
871
+ --color-primary: var(--ohw-primary, #0885FE);
872
+ --color-primary-foreground: var(--ohw-primary-foreground, #FAFAF9);
873
+ --ohw-primary: #0885FE;
874
+ --ohw-primary-foreground: #FAFAF9;
451
875
  --ohw-background: #ffffff;
452
876
  --ohw-foreground: #020617;
453
877
  --ohw-card: #ffffff;
454
878
  --ohw-card-foreground: #020617;
455
879
  --ohw-popover: #ffffff;
456
880
  --ohw-popover-foreground: #020617;
457
- --ohw-primary: #0f172a;
458
- --ohw-primary-foreground: #f8fafc;
459
881
  --ohw-hover-primary: #1e293b;
460
882
  --ohw-secondary: #f1f5f9;
461
883
  --ohw-secondary-foreground: #0f172a;
@@ -529,6 +951,21 @@
529
951
  appearance: none;
530
952
  }
531
953
  }
954
+ @property --tw-translate-x {
955
+ syntax: "*";
956
+ inherits: false;
957
+ initial-value: 0;
958
+ }
959
+ @property --tw-translate-y {
960
+ syntax: "*";
961
+ inherits: false;
962
+ initial-value: 0;
963
+ }
964
+ @property --tw-translate-z {
965
+ syntax: "*";
966
+ inherits: false;
967
+ initial-value: 0;
968
+ }
532
969
  @property --tw-rotate-x {
533
970
  syntax: "*";
534
971
  inherits: false;
@@ -554,10 +991,18 @@
554
991
  inherits: false;
555
992
  initial-value: solid;
556
993
  }
994
+ @property --tw-leading {
995
+ syntax: "*";
996
+ inherits: false;
997
+ }
557
998
  @property --tw-font-weight {
558
999
  syntax: "*";
559
1000
  inherits: false;
560
1001
  }
1002
+ @property --tw-tracking {
1003
+ syntax: "*";
1004
+ inherits: false;
1005
+ }
561
1006
  @property --tw-shadow {
562
1007
  syntax: "*";
563
1008
  inherits: false;
@@ -684,13 +1129,18 @@
684
1129
  @layer properties {
685
1130
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
686
1131
  *, ::before, ::after, ::backdrop {
1132
+ --tw-translate-x: 0;
1133
+ --tw-translate-y: 0;
1134
+ --tw-translate-z: 0;
687
1135
  --tw-rotate-x: initial;
688
1136
  --tw-rotate-y: initial;
689
1137
  --tw-rotate-z: initial;
690
1138
  --tw-skew-x: initial;
691
1139
  --tw-skew-y: initial;
692
1140
  --tw-border-style: solid;
1141
+ --tw-leading: initial;
693
1142
  --tw-font-weight: initial;
1143
+ --tw-tracking: initial;
694
1144
  --tw-shadow: 0 0 #0000;
695
1145
  --tw-shadow-color: initial;
696
1146
  --tw-shadow-alpha: 100%;