@limpiolux/ui-styles 1.0.11 → 1.0.13
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 +24 -5
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.theme-icon-button {
|
|
46
|
-
@apply inline-flex h-
|
|
46
|
+
@apply inline-flex h-14 w-14 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
47
47
|
transition:
|
|
48
48
|
transform 220ms ease,
|
|
49
49
|
background-color 220ms ease,
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
189
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.04] p-5 text-
|
|
189
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.04] p-5 text-center shadow-2xl shadow-black/30 backdrop-blur-xl transition duration-300;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.portal-launchpad-card:hover {
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
.portal-launchpad-icon {
|
|
204
|
-
@apply inline-flex h-
|
|
204
|
+
@apply inline-flex h-24 w-24 items-center justify-center rounded-[28px] border;
|
|
205
205
|
border-color: rgba(var(--color-brand) / 0.2);
|
|
206
206
|
background:
|
|
207
207
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 56%),
|
|
@@ -223,7 +223,12 @@
|
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
.portal-launchpad-meta {
|
|
226
|
-
@apply mt-
|
|
226
|
+
@apply mt-3 flex items-center justify-center gap-3;
|
|
227
|
+
opacity: 0;
|
|
228
|
+
transform: translateY(6px);
|
|
229
|
+
transition:
|
|
230
|
+
opacity 220ms ease,
|
|
231
|
+
transform 220ms ease;
|
|
227
232
|
}
|
|
228
233
|
|
|
229
234
|
.portal-launchpad-role {
|
|
@@ -233,6 +238,12 @@
|
|
|
233
238
|
color: #d7f1fb;
|
|
234
239
|
}
|
|
235
240
|
|
|
241
|
+
.portal-launchpad-card:hover .portal-launchpad-meta,
|
|
242
|
+
.portal-launchpad-card:focus-visible .portal-launchpad-meta {
|
|
243
|
+
opacity: 1;
|
|
244
|
+
transform: translateY(0);
|
|
245
|
+
}
|
|
246
|
+
|
|
236
247
|
.auth-hero-panel {
|
|
237
248
|
@apply relative overflow-hidden p-8 md:p-10;
|
|
238
249
|
}
|
|
@@ -588,11 +599,19 @@
|
|
|
588
599
|
}
|
|
589
600
|
|
|
590
601
|
.portal-stat-card {
|
|
591
|
-
@apply rounded-2xl border px-4
|
|
602
|
+
@apply flex h-14 items-center rounded-2xl border px-4;
|
|
592
603
|
border-color: rgba(255, 255, 255, 0.1);
|
|
593
604
|
background: rgba(255, 255, 255, 0.05);
|
|
594
605
|
}
|
|
595
606
|
|
|
607
|
+
.portal-toolbar {
|
|
608
|
+
@apply flex flex-wrap items-center justify-end gap-3;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.portal-toolbar-button {
|
|
612
|
+
@apply h-14 rounded-2xl px-5;
|
|
613
|
+
}
|
|
614
|
+
|
|
596
615
|
.portal-card {
|
|
597
616
|
@apply relative overflow-hidden p-5 transition duration-300;
|
|
598
617
|
}
|