@limpiolux/ui-styles 1.0.18 → 1.0.19
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 +25 -16
- package/light.css +9 -6
- 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 grid-cols-
|
|
185
|
+
@apply grid grid-cols-2 gap-x-4 gap-y-6 sm:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
@@ -199,18 +199,19 @@
|
|
|
199
199
|
|
|
200
200
|
.portal-launchpad-icon {
|
|
201
201
|
@apply inline-flex h-20 w-20 items-center justify-center rounded-[28px] border sm:h-24 sm:w-24;
|
|
202
|
-
border-color: rgba(255, 255, 255, 0.
|
|
202
|
+
border-color: rgba(255, 255, 255, 0.18);
|
|
203
203
|
background:
|
|
204
|
-
radial-gradient(
|
|
205
|
-
radial-gradient(circle at bottom right, rgba(var(--color-brand) / 0.
|
|
206
|
-
linear-gradient(
|
|
204
|
+
radial-gradient(ellipse at 28% 8%, rgba(255, 255, 255, 0.62), transparent 50%),
|
|
205
|
+
radial-gradient(circle at bottom right, rgba(var(--color-brand) / 0.22), transparent 52%),
|
|
206
|
+
linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
|
|
207
207
|
color: #f8fdff;
|
|
208
208
|
box-shadow:
|
|
209
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
210
|
-
inset 0 -
|
|
211
|
-
0 24px
|
|
212
|
-
|
|
213
|
-
|
|
209
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.38),
|
|
210
|
+
inset 0 -20px 28px -18px rgba(0, 0, 0, 0.2),
|
|
211
|
+
0 24px 48px -28px rgba(0, 117, 169, 0.52),
|
|
212
|
+
0 2px 8px -2px rgba(0, 0, 0, 0.18);
|
|
213
|
+
backdrop-filter: blur(20px) saturate(2);
|
|
214
|
+
-webkit-backdrop-filter: blur(20px) saturate(2);
|
|
214
215
|
transition:
|
|
215
216
|
transform 220ms ease,
|
|
216
217
|
border-color 220ms ease,
|
|
@@ -221,11 +222,12 @@
|
|
|
221
222
|
.portal-launchpad-card:hover .portal-launchpad-icon,
|
|
222
223
|
.portal-launchpad-card:focus-visible .portal-launchpad-icon {
|
|
223
224
|
transform: translateY(-2px);
|
|
224
|
-
border-color: rgba(var(--color-brand) / 0.
|
|
225
|
+
border-color: rgba(var(--color-brand) / 0.32);
|
|
225
226
|
box-shadow:
|
|
226
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
227
|
-
inset 0 -
|
|
228
|
-
0
|
|
227
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.44),
|
|
228
|
+
inset 0 -20px 28px -18px rgba(0, 0, 0, 0.16),
|
|
229
|
+
0 32px 56px -28px rgba(0, 117, 169, 0.64),
|
|
230
|
+
0 4px 14px -4px rgba(0, 0, 0, 0.2);
|
|
229
231
|
}
|
|
230
232
|
|
|
231
233
|
.portal-launchpad-title {
|
|
@@ -269,7 +271,7 @@
|
|
|
269
271
|
}
|
|
270
272
|
|
|
271
273
|
.portal-dashboard-grid {
|
|
272
|
-
@apply mt-
|
|
274
|
+
@apply mt-5 grid gap-5 md:mt-8 md:gap-6 xl:grid-cols-[1.45fr_0.95fr];
|
|
273
275
|
}
|
|
274
276
|
|
|
275
277
|
.portal-dashboard-main {
|
|
@@ -615,7 +617,8 @@
|
|
|
615
617
|
/* ── Soft tabs ── */
|
|
616
618
|
|
|
617
619
|
.soft-tab {
|
|
618
|
-
@apply relative inline-flex
|
|
620
|
+
@apply relative inline-flex items-center justify-center rounded-xl px-3 py-2 text-sm md:px-3.5;
|
|
621
|
+
flex: 1 0 0%;
|
|
619
622
|
background: transparent;
|
|
620
623
|
border-color: transparent;
|
|
621
624
|
color: #a1a1aa;
|
|
@@ -627,6 +630,12 @@
|
|
|
627
630
|
opacity 160ms ease;
|
|
628
631
|
}
|
|
629
632
|
|
|
633
|
+
@media (min-width: 768px) {
|
|
634
|
+
.soft-tab {
|
|
635
|
+
flex: 0 0 auto;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
|
|
630
639
|
.soft-tab:hover {
|
|
631
640
|
color: #e4e4e7;
|
|
632
641
|
}
|
package/light.css
CHANGED
|
@@ -476,14 +476,17 @@
|
|
|
476
476
|
.light .portal-launchpad-icon {
|
|
477
477
|
border-color: rgba(186, 230, 253, 0.92);
|
|
478
478
|
background:
|
|
479
|
-
radial-gradient(
|
|
480
|
-
radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.
|
|
481
|
-
linear-gradient(
|
|
479
|
+
radial-gradient(ellipse at 28% 8%, rgba(255, 255, 255, 0.98), transparent 48%),
|
|
480
|
+
radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 54%),
|
|
481
|
+
linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(224, 242, 254, 0.82) 100%);
|
|
482
482
|
color: rgb(var(--color-brand-strong));
|
|
483
483
|
box-shadow:
|
|
484
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
485
|
-
inset 0 -
|
|
486
|
-
0 20px
|
|
484
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.96),
|
|
485
|
+
inset 0 -20px 28px -20px rgba(8, 47, 73, 0.07),
|
|
486
|
+
0 20px 40px -28px rgba(14, 116, 144, 0.36),
|
|
487
|
+
0 2px 8px -2px rgba(14, 116, 144, 0.12);
|
|
488
|
+
backdrop-filter: blur(20px) saturate(1.6);
|
|
489
|
+
-webkit-backdrop-filter: blur(20px) saturate(1.6);
|
|
487
490
|
}
|
|
488
491
|
|
|
489
492
|
.light .portal-launchpad-card:hover .portal-launchpad-icon,
|