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