@orangecheck/design 0.28.9 → 0.28.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/dist/index.mjs CHANGED
@@ -2858,7 +2858,10 @@ function TabsList({ className, ...props }) {
2858
2858
  TabsPrimitive.List,
2859
2859
  {
2860
2860
  "data-slot": "tabs-list",
2861
- className: cn("border-border -mb-px flex items-center gap-6 border-b", className),
2861
+ className: cn(
2862
+ "border-border -mb-px flex min-w-0 items-center gap-6 overflow-x-auto border-b [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden",
2863
+ className
2864
+ ),
2862
2865
  ...props
2863
2866
  }
2864
2867
  );