@burdenoff/website-sdk 2026.828.1 → 2026.828.2

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
@@ -6570,7 +6570,11 @@ function ExploreCta({
6570
6570
  onNavigate(href);
6571
6571
  };
6572
6572
  const classes = {
6573
- header: "inline-flex items-center gap-1.5 rounded-full bg-gradient-to-r from-primary to-primary/70 px-3.5 py-1.5 text-sm font-medium text-primary-foreground shadow-sm transition-opacity hover:opacity-90",
6573
+ // `shrink-0` matters: this sits in a host header's flex row, and without it the
6574
+ // surrounding nav gets squeezed and its links wrap onto two lines. The label is hidden
6575
+ // below 2xl for the same reason — most product headers are already close to full at
6576
+ // 1440px, and a 90px pill there pushes them over.
6577
+ header: "inline-flex shrink-0 items-center gap-1.5 rounded-full bg-gradient-to-r from-primary to-primary/70 px-2.5 py-1.5 text-sm font-medium text-primary-foreground shadow-sm transition-opacity hover:opacity-90 2xl:px-3.5",
6574
6578
  mobile: "inline-flex w-full items-center gap-2 rounded-lg border border-border bg-card px-3 py-2 text-sm font-medium text-card-foreground transition-colors hover:bg-accent hover:text-accent-foreground",
6575
6579
  floating: "fixed bottom-5 right-5 z-40 inline-flex items-center gap-2 rounded-full bg-gradient-to-r from-primary to-primary/70 px-4 py-3 text-sm font-medium text-primary-foreground shadow-lg transition-opacity hover:opacity-90"
6576
6580
  };
@@ -6603,7 +6607,16 @@ function ExploreCta({
6603
6607
  "aria-hidden": "true"
6604
6608
  }
6605
6609
  ),
6606
- /* @__PURE__ */ jsx("span", { className: cn(variant === "floating" && "hidden sm:inline"), children: label })
6610
+ /* @__PURE__ */ jsx(
6611
+ "span",
6612
+ {
6613
+ className: cn(
6614
+ variant === "floating" && "hidden sm:inline",
6615
+ variant === "header" && "hidden 2xl:inline"
6616
+ ),
6617
+ children: label
6618
+ }
6619
+ )
6607
6620
  ]
6608
6621
  }
6609
6622
  );