@fluid-app/rep-sdk 0.1.10 → 0.1.11

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
@@ -2511,7 +2511,7 @@ function SdkHeader({ tabs, mobileTabs, currentSlug, onNavigate, navSlugs }) {
2511
2511
  return /* @__PURE__ */ jsx("button", {
2512
2512
  type: "button",
2513
2513
  onClick: () => onNavigate(tabSlug),
2514
- className: `border-b-2 px-4 py-3 text-sm font-medium whitespace-nowrap transition-colors ${tabSlug === baseSlug ? "border-primary text-foreground" : "text-muted-foreground hover:border-border hover:text-foreground border-transparent"}`,
2514
+ className: `border-b-2 px-4 py-3 text-sm font-medium whitespace-nowrap transition-colors ${tabSlug === baseSlug ? "text-foreground border-primary" : "text-muted-foreground hover:border-border hover:text-foreground border-transparent"}`,
2515
2515
  children: tab.label
2516
2516
  }, tab.id ?? tabSlug);
2517
2517
  })