@tapizlabs/ui 0.2.10 → 0.2.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/index.d.ts +19 -4
- package/dist/index.js +575 -505
- package/dist/index.js.map +1 -1
- package/dist/theme.css +58 -5
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -418,8 +418,61 @@ html:not(.dark) {
|
|
|
418
418
|
box-shadow: var(--tapiz-brutal-shadow);
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
-
@utility tapiz-enterprise-card {
|
|
422
|
-
background: var(--tapiz-bg-surface);
|
|
423
|
-
border: 1px solid var(--tapiz-border-subtle);
|
|
424
|
-
box-shadow: var(--tapiz-shadow-md);
|
|
425
|
-
}
|
|
421
|
+
@utility tapiz-enterprise-card {
|
|
422
|
+
background: var(--tapiz-bg-surface);
|
|
423
|
+
border: 1px solid var(--tapiz-border-subtle);
|
|
424
|
+
box-shadow: var(--tapiz-shadow-md);
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@utility tapiz-landing-shell {
|
|
428
|
+
pointer-events: auto;
|
|
429
|
+
border: 1px solid var(--tapiz-border-strong);
|
|
430
|
+
background: color-mix(in srgb, var(--tapiz-bg-surface) 88%, transparent);
|
|
431
|
+
box-shadow: var(--tapiz-shadow-md);
|
|
432
|
+
backdrop-filter: blur(22px) saturate(130%);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
@utility tapiz-landing-icon-button {
|
|
436
|
+
display: inline-flex;
|
|
437
|
+
align-items: center;
|
|
438
|
+
justify-content: center;
|
|
439
|
+
width: 2.75rem;
|
|
440
|
+
height: 2.75rem;
|
|
441
|
+
border: 0;
|
|
442
|
+
background: transparent;
|
|
443
|
+
color: var(--tapiz-text-muted);
|
|
444
|
+
transition: color 120ms ease, transform 120ms ease;
|
|
445
|
+
&:hover,
|
|
446
|
+
&:focus-visible { color: var(--tapiz-accent); }
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
@utility tapiz-landing-footer-heading {
|
|
450
|
+
color: var(--tapiz-text-disabled);
|
|
451
|
+
font-family: var(--font-mono);
|
|
452
|
+
font-size: 0.68rem;
|
|
453
|
+
font-weight: 900;
|
|
454
|
+
letter-spacing: 0.16em;
|
|
455
|
+
text-transform: uppercase;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
@utility tapiz-landing-footer-link {
|
|
459
|
+
display: inline-flex;
|
|
460
|
+
width: max-content;
|
|
461
|
+
max-width: 100%;
|
|
462
|
+
align-items: center;
|
|
463
|
+
gap: 0.5rem;
|
|
464
|
+
color: var(--tapiz-text-muted);
|
|
465
|
+
transition: color 120ms ease, transform 120ms ease;
|
|
466
|
+
&:hover,
|
|
467
|
+
&:focus-visible {
|
|
468
|
+
color: var(--tapiz-accent);
|
|
469
|
+
transform: translateX(3px);
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
@utility tapiz-landing-mobile-drawer {
|
|
474
|
+
border: 1px solid var(--tapiz-border-strong);
|
|
475
|
+
background: color-mix(in srgb, var(--tapiz-bg-surface) 94%, transparent);
|
|
476
|
+
box-shadow: var(--tapiz-shadow-lg);
|
|
477
|
+
backdrop-filter: blur(22px);
|
|
478
|
+
}
|