@limpiolux/ui-styles 1.0.20 → 1.0.21
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 +16 -9
- package/light.css +4 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -100,7 +100,8 @@
|
|
|
100
100
|
.portal-panel,
|
|
101
101
|
.portal-header-panel,
|
|
102
102
|
.portal-card {
|
|
103
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.045]
|
|
103
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] backdrop-blur-xl;
|
|
104
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
104
105
|
transition:
|
|
105
106
|
background-color 420ms ease,
|
|
106
107
|
border-color 420ms ease,
|
|
@@ -133,15 +134,17 @@
|
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
.portal-app-card {
|
|
136
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.045]
|
|
137
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] backdrop-blur-xl relative overflow-hidden p-5 transition duration-300;
|
|
138
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
137
139
|
}
|
|
138
140
|
|
|
139
141
|
.portal-widget-grid {
|
|
140
|
-
@apply grid gap-4 md:grid-cols-2
|
|
142
|
+
@apply grid gap-4 md:grid-cols-2 lg:grid-cols-4;
|
|
141
143
|
}
|
|
142
144
|
|
|
143
145
|
.portal-widget-card {
|
|
144
|
-
@apply rounded-[24px] border border-white/10 bg-white/[0.045] p-4
|
|
146
|
+
@apply rounded-[24px] border border-white/10 bg-white/[0.045] p-4 backdrop-blur-xl transition duration-300;
|
|
147
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
145
148
|
}
|
|
146
149
|
|
|
147
150
|
.portal-widget-card:hover {
|
|
@@ -251,15 +254,17 @@
|
|
|
251
254
|
}
|
|
252
255
|
|
|
253
256
|
.portal-home-card {
|
|
254
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5
|
|
257
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 backdrop-blur-xl;
|
|
258
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
255
259
|
}
|
|
256
260
|
|
|
257
261
|
.portal-dashboard-grid {
|
|
258
|
-
@apply mt-5 grid gap-5 md:mt-8 md:gap-6
|
|
262
|
+
@apply mt-5 grid gap-5 md:mt-8 md:gap-6 lg:grid-cols-[1.4fr_1fr];
|
|
259
263
|
}
|
|
260
264
|
|
|
261
265
|
.portal-dashboard-main {
|
|
262
|
-
@apply rounded-[30px] border border-white/10 bg-white/[0.045] p-5
|
|
266
|
+
@apply rounded-[30px] border border-white/10 bg-white/[0.045] p-5 backdrop-blur-xl md:p-6;
|
|
267
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
263
268
|
}
|
|
264
269
|
|
|
265
270
|
.portal-dashboard-side {
|
|
@@ -267,7 +272,8 @@
|
|
|
267
272
|
}
|
|
268
273
|
|
|
269
274
|
.portal-side-card {
|
|
270
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5
|
|
275
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 backdrop-blur-xl;
|
|
276
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
271
277
|
}
|
|
272
278
|
|
|
273
279
|
.portal-side-hero {
|
|
@@ -436,7 +442,8 @@
|
|
|
436
442
|
}
|
|
437
443
|
|
|
438
444
|
.auth-card {
|
|
439
|
-
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-6
|
|
445
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-6 backdrop-blur-xl md:p-8;
|
|
446
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 20px -2px rgba(0, 0, 0, 0.22);
|
|
440
447
|
transition:
|
|
441
448
|
background-color 420ms ease,
|
|
442
449
|
border-color 420ms ease,
|
package/light.css
CHANGED
|
@@ -383,6 +383,7 @@
|
|
|
383
383
|
.light .portal-widget-card {
|
|
384
384
|
border-color: rgba(212, 212, 216, 0.92);
|
|
385
385
|
background: rgba(255, 255, 255, 0.84);
|
|
386
|
+
box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12);
|
|
386
387
|
}
|
|
387
388
|
|
|
388
389
|
.light .portal-widget-card:hover {
|
|
@@ -514,16 +515,19 @@
|
|
|
514
515
|
.light .portal-home-card {
|
|
515
516
|
border-color: rgba(212, 212, 216, 0.92);
|
|
516
517
|
background: rgba(255, 255, 255, 0.84);
|
|
518
|
+
box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12);
|
|
517
519
|
}
|
|
518
520
|
|
|
519
521
|
.light .portal-dashboard-main {
|
|
520
522
|
border-color: rgba(212, 212, 216, 0.92);
|
|
521
523
|
background: rgba(255, 255, 255, 0.84);
|
|
524
|
+
box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12);
|
|
522
525
|
}
|
|
523
526
|
|
|
524
527
|
.light .portal-side-card {
|
|
525
528
|
border-color: rgba(212, 212, 216, 0.92);
|
|
526
529
|
background: rgba(255, 255, 255, 0.84);
|
|
530
|
+
box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12);
|
|
527
531
|
}
|
|
528
532
|
|
|
529
533
|
.light .portal-side-hero {
|