kaleido-ui 0.1.78 → 0.1.79
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/dist/web/index.cjs +2 -2
- package/dist/web/index.js +2 -2
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -2369,7 +2369,7 @@ function BottomNav({
|
|
|
2369
2369
|
"nav",
|
|
2370
2370
|
{
|
|
2371
2371
|
className: cn(
|
|
2372
|
-
"w-[90%] max-w-[
|
|
2372
|
+
"w-[90%] max-w-[21.25rem] rounded-full bg-card/60 shadow-lg backdrop-blur-xl",
|
|
2373
2373
|
position === "fixed" ? "fixed bottom-6 left-1/2 z-[var(--z-nav)] -translate-x-1/2" : "relative",
|
|
2374
2374
|
className
|
|
2375
2375
|
),
|
|
@@ -2382,7 +2382,7 @@ function BottomNav({
|
|
|
2382
2382
|
onClick: () => onChange(id),
|
|
2383
2383
|
"data-testid": testId ?? `bottom-nav-${id}`,
|
|
2384
2384
|
className: cn(
|
|
2385
|
-
"relative flex h-[
|
|
2385
|
+
"relative flex h-[3.25rem] w-[4rem] flex-col items-center justify-center rounded-full transition-all duration-300",
|
|
2386
2386
|
isActive ? "bg-white/10 text-primary" : "text-muted-foreground hover:text-white/75 active:scale-95"
|
|
2387
2387
|
),
|
|
2388
2388
|
children: [
|
package/dist/web/index.js
CHANGED
|
@@ -2189,7 +2189,7 @@ function BottomNav({
|
|
|
2189
2189
|
"nav",
|
|
2190
2190
|
{
|
|
2191
2191
|
className: cn(
|
|
2192
|
-
"w-[90%] max-w-[
|
|
2192
|
+
"w-[90%] max-w-[21.25rem] rounded-full bg-card/60 shadow-lg backdrop-blur-xl",
|
|
2193
2193
|
position === "fixed" ? "fixed bottom-6 left-1/2 z-[var(--z-nav)] -translate-x-1/2" : "relative",
|
|
2194
2194
|
className
|
|
2195
2195
|
),
|
|
@@ -2202,7 +2202,7 @@ function BottomNav({
|
|
|
2202
2202
|
onClick: () => onChange(id),
|
|
2203
2203
|
"data-testid": testId ?? `bottom-nav-${id}`,
|
|
2204
2204
|
className: cn(
|
|
2205
|
-
"relative flex h-[
|
|
2205
|
+
"relative flex h-[3.25rem] w-[4rem] flex-col items-center justify-center rounded-full transition-all duration-300",
|
|
2206
2206
|
isActive ? "bg-white/10 text-primary" : "text-muted-foreground hover:text-white/75 active:scale-95"
|
|
2207
2207
|
),
|
|
2208
2208
|
children: [
|
package/package.json
CHANGED