@rash2x/bridge-widget 0.3.1 → 0.3.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.
@@ -2299,7 +2299,7 @@ const WalletBalance = (props) => {
2299
2299
  variant: "ghost",
2300
2300
  size: "sm",
2301
2301
  onClick: onMaxClick,
2302
- className: "h-auto p-0 px-0 text-xs font-medium border-b border-foreground rounded-none",
2302
+ className: "h-auto p-0 px-0 text-xs text-link font-medium underline hover:opacity-70 cursor-pointer rounded-none",
2303
2303
  children: t("bridge.max")
2304
2304
  }
2305
2305
  )
@@ -2387,7 +2387,7 @@ const TokenInput = forwardRef(
2387
2387
  [max, onAmountChange]
2388
2388
  );
2389
2389
  if (showSkeleton && readOnly) {
2390
- return /* @__PURE__ */ jsx(Skeleton, { className: cn("h-8 my-2 w-1/3 rounded-md", className) });
2390
+ return /* @__PURE__ */ jsx(Skeleton, { className: cn("h-8 my-2 w-1/3 bg-secondary rounded-md", className) });
2391
2391
  }
2392
2392
  return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
2393
2393
  Input,