@rash2x/bridge-widget 0.1.34 → 0.1.36

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.
@@ -1617,7 +1617,7 @@ const RefreshButton = () => {
1617
1617
  onClick: handleRefresh,
1618
1618
  disabled: spinning,
1619
1619
  variant: "secondary",
1620
- className: "bg-card text-card-foreground h-9",
1620
+ className: "bg-card text-card-foreground hover:text-card-foreground h-9",
1621
1621
  size: "sm",
1622
1622
  children: /* @__PURE__ */ jsx(
1623
1623
  ReloadIcon,
@@ -3806,7 +3806,7 @@ const WalletSelectModal = () => {
3806
3806
  /* @__PURE__ */ jsx("div", { className: "py-2 font-semibold text-muted-foreground uppercase", children: t2("wallets.connected") }),
3807
3807
  /* @__PURE__ */ jsx("div", { className: "", children: connectedWallets.map((wallet) => {
3808
3808
  const IconComponent = wallet.icon;
3809
- return /* @__PURE__ */ jsx("div", { className: "-mx-3", children: /* @__PURE__ */ jsxs(Button, { className: "w-full cursor-pointer bg-transparent flex shadow-none items-center justify-start gap-3 px-3 py-3 hover:bg-muted h-auto rounded-md", children: [
3809
+ return /* @__PURE__ */ jsx("div", { className: "-mx-3", children: /* @__PURE__ */ jsxs(Button, { className: "w-full cursor-pointer bg-transparent flex shadow-none items-center justify-start gap-3 px-3 py-3 h-auto rounded-md hover:bg-accent hover:scale-100", children: [
3810
3810
  /* @__PURE__ */ jsx(IconComponent, { className: "min-w-8 min-h-8" }),
3811
3811
  /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-start min-w-0", children: [
3812
3812
  /* @__PURE__ */ jsx("p", { className: "font-semibold text-foreground text-sm leading-4 truncate", children: short(wallet.address) }),