@webdevarif/dashui 0.1.8 → 0.1.9

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/index.mjs CHANGED
@@ -503,9 +503,9 @@ var SelectContent = React9.forwardRef(({ className, children, position = "popper
503
503
  SelectPrimitive.Content,
504
504
  {
505
505
  ref,
506
+ style: { background: "#ffffff", border: "1px solid #e5e7eb", borderRadius: 10, boxShadow: "0 8px 32px rgba(0,0,0,0.12)", zIndex: 9999, overflow: "hidden" },
506
507
  className: cn(
507
- // explicit bg + border + shadow so it never relies on missing CSS vars
508
- "relative z-50 max-h-96 min-w-[8rem] overflow-hidden",
508
+ "relative max-h-96 min-w-[8rem] overflow-hidden",
509
509
  "rounded-lg border border-border bg-white text-foreground shadow-lg",
510
510
  "dark:bg-zinc-900 dark:border-zinc-700",
511
511
  "data-[state=open]:animate-in data-[state=closed]:animate-out",