@limpiolux/ui-styles 1.0.8 → 1.0.10
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 +22 -2
- package/light.css +15 -0
- package/package.json +1 -1
- package/utilities.css +1 -1
package/components.css
CHANGED
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.portal-app-card {
|
|
136
|
-
@apply
|
|
136
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] shadow-2xl shadow-black/30 backdrop-blur-xl relative overflow-hidden p-5 transition duration-300;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
.auth-hero-panel {
|
|
@@ -149,8 +149,28 @@
|
|
|
149
149
|
@apply h-20 w-auto md:h-28;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
.auth-hero-frame {
|
|
153
|
+
@apply relative h-full;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.auth-hero-icon {
|
|
157
|
+
@apply absolute left-0 top-0 h-9 w-auto md:h-10;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.auth-hero-content {
|
|
161
|
+
@apply flex h-full items-center justify-center;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.auth-hero-copy {
|
|
165
|
+
@apply w-full max-w-xl text-left;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.auth-hero-wordmark {
|
|
169
|
+
@apply mt-3 h-14 w-auto md:h-16;
|
|
170
|
+
}
|
|
171
|
+
|
|
152
172
|
.auth-hero-title {
|
|
153
|
-
@apply
|
|
173
|
+
@apply max-w-xl text-3xl font-semibold tracking-tight text-zinc-100 md:text-[2.6rem];
|
|
154
174
|
}
|
|
155
175
|
|
|
156
176
|
.auth-hero-body {
|
package/light.css
CHANGED
|
@@ -116,6 +116,13 @@
|
|
|
116
116
|
color: #18181b;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
.light .btn-primary,
|
|
120
|
+
.light .btn-primary:hover,
|
|
121
|
+
.light .brand-fab,
|
|
122
|
+
.light .brand-fab:hover {
|
|
123
|
+
color: #ffffff;
|
|
124
|
+
}
|
|
125
|
+
|
|
119
126
|
.light .accent-amber-text {
|
|
120
127
|
color: #a16207;
|
|
121
128
|
}
|
|
@@ -252,6 +259,10 @@
|
|
|
252
259
|
color: #ffffff;
|
|
253
260
|
}
|
|
254
261
|
|
|
262
|
+
.light .soft-tab-active .soft-tab-label {
|
|
263
|
+
color: #ffffff;
|
|
264
|
+
}
|
|
265
|
+
|
|
255
266
|
.light .soft-tab-track {
|
|
256
267
|
border-color: rgba(212, 212, 216, 0.95);
|
|
257
268
|
background:
|
|
@@ -698,6 +709,10 @@
|
|
|
698
709
|
color: rgb(var(--color-zinc-300)) !important;
|
|
699
710
|
}
|
|
700
711
|
|
|
712
|
+
.light {
|
|
713
|
+
--legacy-white-foreground: rgb(var(--color-zinc-200));
|
|
714
|
+
}
|
|
715
|
+
|
|
701
716
|
.light .text-muted {
|
|
702
717
|
color: rgb(var(--color-zinc-500)) !important;
|
|
703
718
|
}
|
package/package.json
CHANGED