@limpiolux/ui-styles 1.0.16 → 1.0.17
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 +63 -2
- package/light.css +42 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -280,6 +280,62 @@
|
|
|
280
280
|
@apply grid gap-5;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
.portal-side-card {
|
|
284
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.portal-side-hero {
|
|
288
|
+
@apply rounded-[24px] border p-4;
|
|
289
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
290
|
+
background:
|
|
291
|
+
radial-gradient(circle at top right, rgba(var(--color-brand) / 0.18), transparent 42%),
|
|
292
|
+
rgba(255, 255, 255, 0.04);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.portal-side-list {
|
|
296
|
+
@apply mt-4 space-y-3;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.portal-side-item {
|
|
300
|
+
@apply flex items-start gap-3 rounded-2xl border p-4 transition duration-200;
|
|
301
|
+
border-color: rgba(255, 255, 255, 0.08);
|
|
302
|
+
background: rgba(255, 255, 255, 0.03);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.portal-side-item:hover {
|
|
306
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
307
|
+
background: rgba(255, 255, 255, 0.05);
|
|
308
|
+
transform: translateY(-1px);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.portal-side-icon {
|
|
312
|
+
@apply inline-flex h-10 w-10 shrink-0 items-center justify-center rounded-2xl border;
|
|
313
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
314
|
+
background: rgba(var(--color-brand) / 0.08);
|
|
315
|
+
color: rgb(var(--color-brand-soft));
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.portal-side-item-title {
|
|
319
|
+
@apply text-sm font-medium;
|
|
320
|
+
color: #f4f4f5;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.portal-side-item-copy {
|
|
324
|
+
@apply mt-1 text-sm leading-6;
|
|
325
|
+
color: #a1a1aa;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.portal-side-chip-row {
|
|
329
|
+
@apply mt-4 flex flex-wrap gap-2;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.portal-side-chip {
|
|
333
|
+
@apply rounded-full border px-3 py-1 text-[11px] font-medium uppercase tracking-[0.16em];
|
|
334
|
+
border-color: rgba(var(--color-brand) / 0.16);
|
|
335
|
+
background: rgba(var(--color-brand) / 0.08);
|
|
336
|
+
color: rgb(var(--color-brand-soft));
|
|
337
|
+
}
|
|
338
|
+
|
|
283
339
|
.portal-section-kicker {
|
|
284
340
|
@apply text-[11px] font-medium uppercase tracking-[0.22em];
|
|
285
341
|
color: #71717a;
|
|
@@ -559,7 +615,7 @@
|
|
|
559
615
|
/* ── Soft tabs ── */
|
|
560
616
|
|
|
561
617
|
.soft-tab {
|
|
562
|
-
@apply relative inline-flex shrink-0 items-center justify-center rounded-xl px-3
|
|
618
|
+
@apply relative inline-flex shrink-0 items-center justify-center rounded-xl px-3 py-2 text-sm md:px-3.5;
|
|
563
619
|
background: transparent;
|
|
564
620
|
border-color: transparent;
|
|
565
621
|
color: #a1a1aa;
|
|
@@ -718,7 +774,12 @@
|
|
|
718
774
|
}
|
|
719
775
|
|
|
720
776
|
.portal-toolbar {
|
|
721
|
-
@apply flex
|
|
777
|
+
@apply flex w-full items-center gap-2 overflow-x-auto pb-1 md:w-auto md:justify-end md:overflow-visible md:pb-0;
|
|
778
|
+
scrollbar-width: none;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.portal-toolbar::-webkit-scrollbar {
|
|
782
|
+
display: none;
|
|
722
783
|
}
|
|
723
784
|
|
|
724
785
|
.portal-toolbar-button {
|
package/light.css
CHANGED
|
@@ -519,6 +519,48 @@
|
|
|
519
519
|
background: rgba(255, 255, 255, 0.84);
|
|
520
520
|
}
|
|
521
521
|
|
|
522
|
+
.light .portal-side-card {
|
|
523
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
524
|
+
background: rgba(255, 255, 255, 0.84);
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.light .portal-side-hero {
|
|
528
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
529
|
+
background:
|
|
530
|
+
radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 42%),
|
|
531
|
+
rgba(255, 255, 255, 0.92);
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.light .portal-side-item {
|
|
535
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
536
|
+
background: rgba(255, 255, 255, 0.9);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.light .portal-side-item:hover {
|
|
540
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
541
|
+
background: #ffffff;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.light .portal-side-icon {
|
|
545
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
546
|
+
background: rgba(240, 249, 255, 0.92);
|
|
547
|
+
color: rgb(var(--color-brand-strong));
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.light .portal-side-item-title {
|
|
551
|
+
color: #18181b;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.light .portal-side-item-copy {
|
|
555
|
+
color: #52525b;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.light .portal-side-chip {
|
|
559
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
560
|
+
background: #f0f9ff;
|
|
561
|
+
color: rgb(var(--color-brand-strong));
|
|
562
|
+
}
|
|
563
|
+
|
|
522
564
|
.light .portal-home-icon {
|
|
523
565
|
border-color: rgba(186, 230, 253, 0.92);
|
|
524
566
|
background: rgba(240, 249, 255, 0.92);
|