@limpiolux/ui-styles 1.0.23 → 1.0.25
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/components.css +11 -7
- package/light.css +1 -1
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -401,7 +401,11 @@
|
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.auth-hero-panel {
|
|
404
|
-
@apply relative overflow-hidden p-
|
|
404
|
+
@apply relative overflow-hidden p-5 sm:p-6 lg:p-10;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.auth-hero-kicker {
|
|
408
|
+
@apply text-xs font-medium uppercase tracking-[0.18em] text-zinc-500;
|
|
405
409
|
}
|
|
406
410
|
|
|
407
411
|
.auth-hero-backdrop {
|
|
@@ -430,15 +434,15 @@
|
|
|
430
434
|
}
|
|
431
435
|
|
|
432
436
|
.auth-hero-wordmark {
|
|
433
|
-
@apply mt-3 h-
|
|
437
|
+
@apply mt-3 h-12 w-auto lg:h-16;
|
|
434
438
|
}
|
|
435
439
|
|
|
436
440
|
.auth-hero-title {
|
|
437
|
-
@apply max-w-xl text-
|
|
441
|
+
@apply max-w-xl text-2xl font-semibold tracking-tight text-zinc-100 lg:text-[2.6rem];
|
|
438
442
|
}
|
|
439
443
|
|
|
440
444
|
.auth-hero-body {
|
|
441
|
-
@apply mt-4 max-w-xl text-sm leading-6 text-zinc-400
|
|
445
|
+
@apply mt-4 max-w-xl text-sm leading-6 text-zinc-400 lg:text-base;
|
|
442
446
|
}
|
|
443
447
|
|
|
444
448
|
.auth-card {
|
|
@@ -806,7 +810,7 @@
|
|
|
806
810
|
}
|
|
807
811
|
|
|
808
812
|
.portal-toolbar {
|
|
809
|
-
@apply flex
|
|
813
|
+
@apply flex shrink-0 items-center gap-2 overflow-x-auto pb-1 md:overflow-visible md:pb-0;
|
|
810
814
|
scrollbar-width: none;
|
|
811
815
|
}
|
|
812
816
|
|
|
@@ -1935,9 +1939,9 @@
|
|
|
1935
1939
|
/* ── Portal footer ── */
|
|
1936
1940
|
|
|
1937
1941
|
.portal-footer {
|
|
1938
|
-
@apply
|
|
1942
|
+
@apply py-4 text-center text-xs tracking-wide;
|
|
1939
1943
|
color: #52525b;
|
|
1940
|
-
|
|
1944
|
+
background: linear-gradient(to bottom, transparent, rgba(9, 9, 11, 1));
|
|
1941
1945
|
}
|
|
1942
1946
|
|
|
1943
1947
|
/* ── User avatar ── */
|
package/light.css
CHANGED