@limpiolux/ui-styles 1.0.14 → 1.0.15

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 CHANGED
@@ -260,6 +260,71 @@
260
260
  transform: translateY(0);
261
261
  }
262
262
 
263
+ .portal-home-grid {
264
+ @apply mt-10 grid gap-5 lg:grid-cols-3;
265
+ }
266
+
267
+ .portal-home-card {
268
+ @apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
269
+ }
270
+
271
+ .portal-home-header {
272
+ @apply flex items-start gap-4;
273
+ }
274
+
275
+ .portal-home-icon {
276
+ @apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border;
277
+ border-color: rgba(var(--color-brand) / 0.2);
278
+ background: rgba(var(--color-brand) / 0.1);
279
+ color: rgb(var(--color-brand-soft));
280
+ }
281
+
282
+ .portal-home-kicker {
283
+ @apply text-[11px] font-medium uppercase tracking-[0.18em];
284
+ color: #71717a;
285
+ }
286
+
287
+ .portal-home-title {
288
+ @apply mt-2 text-lg font-semibold tracking-tight;
289
+ color: #f4f4f5;
290
+ }
291
+
292
+ .portal-home-copy {
293
+ @apply mt-2 text-sm leading-6;
294
+ color: #a1a1aa;
295
+ }
296
+
297
+ .portal-home-list {
298
+ @apply mt-5 space-y-3;
299
+ }
300
+
301
+ .portal-home-item {
302
+ @apply rounded-2xl border p-4 transition duration-200;
303
+ border-color: rgba(255, 255, 255, 0.08);
304
+ background: rgba(255, 255, 255, 0.03);
305
+ }
306
+
307
+ .portal-home-item:hover {
308
+ border-color: rgba(var(--color-brand) / 0.18);
309
+ background: rgba(255, 255, 255, 0.05);
310
+ transform: translateY(-1px);
311
+ }
312
+
313
+ .portal-home-item-title {
314
+ @apply text-sm font-medium;
315
+ color: #f4f4f5;
316
+ }
317
+
318
+ .portal-home-item-copy {
319
+ @apply mt-1 text-sm leading-6;
320
+ color: #a1a1aa;
321
+ }
322
+
323
+ .portal-home-item-meta {
324
+ @apply mt-3 inline-flex items-center gap-2 text-xs font-medium uppercase tracking-[0.16em];
325
+ color: rgb(var(--color-brand-soft));
326
+ }
327
+
263
328
  .auth-hero-panel {
264
329
  @apply relative overflow-hidden p-8 md:p-10;
265
330
  }
package/light.css CHANGED
@@ -509,6 +509,45 @@
509
509
  color: #0369a1;
510
510
  }
511
511
 
512
+ .light .portal-home-card {
513
+ border-color: rgba(212, 212, 216, 0.92);
514
+ background: rgba(255, 255, 255, 0.84);
515
+ }
516
+
517
+ .light .portal-home-icon {
518
+ border-color: rgba(186, 230, 253, 0.92);
519
+ background: rgba(240, 249, 255, 0.92);
520
+ color: rgb(var(--color-brand-strong));
521
+ }
522
+
523
+ .light .portal-home-kicker {
524
+ color: #52525b;
525
+ }
526
+
527
+ .light .portal-home-title,
528
+ .light .portal-home-item-title {
529
+ color: #18181b;
530
+ }
531
+
532
+ .light .portal-home-copy,
533
+ .light .portal-home-item-copy {
534
+ color: #52525b;
535
+ }
536
+
537
+ .light .portal-home-item {
538
+ border-color: rgba(212, 212, 216, 0.92);
539
+ background: rgba(255, 255, 255, 0.9);
540
+ }
541
+
542
+ .light .portal-home-item:hover {
543
+ border-color: rgba(186, 230, 253, 0.92);
544
+ background: #ffffff;
545
+ }
546
+
547
+ .light .portal-home-item-meta {
548
+ color: rgb(var(--color-brand-strong));
549
+ }
550
+
512
551
  .light .portal-title {
513
552
  color: #18181b;
514
553
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limpiolux/ui-styles",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Shared design system — Limpiolux liquid glass theme with auth, portal and dark/light mode support",
5
5
  "type": "module",
6
6
  "exports": {