@limpiolux/ui-styles 1.0.15 → 1.0.16
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 +43 -11
- package/light.css +17 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.portal-launchpad-grid {
|
|
185
|
-
@apply grid gap-x-
|
|
185
|
+
@apply grid grid-cols-3 gap-x-4 gap-y-6 sm:grid-cols-4 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.portal-launchpad-icon {
|
|
201
|
-
@apply inline-flex h-
|
|
201
|
+
@apply inline-flex h-20 w-20 items-center justify-center rounded-[28px] border sm:h-24 sm:w-24;
|
|
202
202
|
border-color: rgba(255, 255, 255, 0.14);
|
|
203
203
|
background:
|
|
204
204
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 54%),
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
.portal-launchpad-title {
|
|
232
|
-
@apply mt-3 text-
|
|
232
|
+
@apply mt-3 text-sm font-semibold tracking-tight sm:text-base;
|
|
233
233
|
color: #f4f4f5;
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -261,13 +261,40 @@
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
.portal-home-grid {
|
|
264
|
-
@apply
|
|
264
|
+
@apply grid gap-5 lg:grid-cols-3;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
.portal-home-card {
|
|
268
268
|
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
.portal-dashboard-grid {
|
|
272
|
+
@apply mt-8 grid gap-6 xl:grid-cols-[1.45fr_0.95fr];
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.portal-dashboard-main {
|
|
276
|
+
@apply rounded-[30px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl md:p-6;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.portal-dashboard-side {
|
|
280
|
+
@apply grid gap-5;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.portal-section-kicker {
|
|
284
|
+
@apply text-[11px] font-medium uppercase tracking-[0.22em];
|
|
285
|
+
color: #71717a;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.portal-section-title {
|
|
289
|
+
@apply mt-2 text-2xl font-semibold tracking-tight;
|
|
290
|
+
color: #f4f4f5;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.portal-section-copy {
|
|
294
|
+
@apply mt-2 text-sm leading-6;
|
|
295
|
+
color: #a1a1aa;
|
|
296
|
+
}
|
|
297
|
+
|
|
271
298
|
.portal-home-header {
|
|
272
299
|
@apply flex items-start gap-4;
|
|
273
300
|
}
|
|
@@ -532,7 +559,7 @@
|
|
|
532
559
|
/* ── Soft tabs ── */
|
|
533
560
|
|
|
534
561
|
.soft-tab {
|
|
535
|
-
@apply relative inline-flex items-center justify-center rounded-xl px-3.5 py-2 text-sm;
|
|
562
|
+
@apply relative inline-flex shrink-0 items-center justify-center rounded-xl px-3.5 py-2 text-sm;
|
|
536
563
|
background: transparent;
|
|
537
564
|
border-color: transparent;
|
|
538
565
|
color: #a1a1aa;
|
|
@@ -553,7 +580,7 @@
|
|
|
553
580
|
}
|
|
554
581
|
|
|
555
582
|
.soft-tab-track {
|
|
556
|
-
@apply relative
|
|
583
|
+
@apply relative flex w-full items-center gap-1 overflow-x-auto rounded-2xl p-1 md:inline-flex md:w-auto;
|
|
557
584
|
border: 1px solid rgba(63, 63, 70, 0.78);
|
|
558
585
|
background:
|
|
559
586
|
linear-gradient(180deg, rgba(39, 39, 42, 0.28), rgba(24, 24, 27, 0.32)),
|
|
@@ -567,6 +594,11 @@
|
|
|
567
594
|
0 18px 34px -28px rgba(0, 0, 0, 0.34);
|
|
568
595
|
backdrop-filter: blur(18px);
|
|
569
596
|
-webkit-backdrop-filter: blur(18px);
|
|
597
|
+
scrollbar-width: none;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.soft-tab-track::-webkit-scrollbar {
|
|
601
|
+
display: none;
|
|
570
602
|
}
|
|
571
603
|
|
|
572
604
|
.soft-tab-slider {
|
|
@@ -676,25 +708,25 @@
|
|
|
676
708
|
}
|
|
677
709
|
|
|
678
710
|
.portal-header-panel {
|
|
679
|
-
@apply flex flex-col gap-4 p-
|
|
711
|
+
@apply flex flex-col gap-4 p-5 md:flex-row md:items-end md:justify-between md:p-6;
|
|
680
712
|
}
|
|
681
713
|
|
|
682
714
|
.portal-stat-card {
|
|
683
|
-
@apply flex h-
|
|
715
|
+
@apply flex h-11 items-center rounded-2xl border px-3;
|
|
684
716
|
border-color: rgba(255, 255, 255, 0.1);
|
|
685
717
|
background: rgba(255, 255, 255, 0.05);
|
|
686
718
|
}
|
|
687
719
|
|
|
688
720
|
.portal-toolbar {
|
|
689
|
-
@apply flex flex-wrap items-center justify-end
|
|
721
|
+
@apply flex flex-wrap items-center gap-2 md:justify-end;
|
|
690
722
|
}
|
|
691
723
|
|
|
692
724
|
.portal-toolbar-button {
|
|
693
|
-
@apply h-
|
|
725
|
+
@apply h-11 min-w-11 rounded-2xl px-0;
|
|
694
726
|
}
|
|
695
727
|
|
|
696
728
|
.portal-toolbar-icon {
|
|
697
|
-
@apply inline-flex h-
|
|
729
|
+
@apply inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
698
730
|
transition:
|
|
699
731
|
transform 220ms ease,
|
|
700
732
|
background-color 220ms ease,
|
package/light.css
CHANGED
|
@@ -514,6 +514,11 @@
|
|
|
514
514
|
background: rgba(255, 255, 255, 0.84);
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
.light .portal-dashboard-main {
|
|
518
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
519
|
+
background: rgba(255, 255, 255, 0.84);
|
|
520
|
+
}
|
|
521
|
+
|
|
517
522
|
.light .portal-home-icon {
|
|
518
523
|
border-color: rgba(186, 230, 253, 0.92);
|
|
519
524
|
background: rgba(240, 249, 255, 0.92);
|
|
@@ -524,6 +529,18 @@
|
|
|
524
529
|
color: #52525b;
|
|
525
530
|
}
|
|
526
531
|
|
|
532
|
+
.light .portal-section-kicker {
|
|
533
|
+
color: #52525b;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.light .portal-section-title {
|
|
537
|
+
color: #18181b;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.light .portal-section-copy {
|
|
541
|
+
color: #52525b;
|
|
542
|
+
}
|
|
543
|
+
|
|
527
544
|
.light .portal-home-title,
|
|
528
545
|
.light .portal-home-item-title {
|
|
529
546
|
color: #18181b;
|