@rash2x/bridge-widget 0.1.36 → 0.1.37

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.
@@ -1681,7 +1681,7 @@ const FormHeaderComponent = () => {
1681
1681
  const sum = selectedAssetSymbol.toUpperCase();
1682
1682
  return assets.find((a) => a.symbol.toUpperCase() === sum) ?? assets[0];
1683
1683
  }, [assets, selectedAssetSymbol]);
1684
- return /* @__PURE__ */ jsxs(CardHeader, { className: "gap-y-0 flex flex-row justify-between items-center", children: [
1684
+ return /* @__PURE__ */ jsxs(CardHeader, { className: "gap-y-0 p-0 flex flex-row justify-between items-center", children: [
1685
1685
  /* @__PURE__ */ jsxs(CardTitle, { className: "flex items-center gap-3", children: [
1686
1686
  /* @__PURE__ */ jsx("span", { className: "text-sm font-normal leading-4 text-muted-foreground", children: t2("bridge.selectToken") }),
1687
1687
  /* @__PURE__ */ jsx(SelectTokenButton, { token: current, onClick: onOpen })
@@ -7732,12 +7732,12 @@ const EvaaBridgeContent = ({
7732
7732
  Card,
7733
7733
  {
7734
7734
  className: cn(
7735
- "max-w-md w-full mx-auto flex flex-col relative",
7735
+ "max-w-md w-full mx-auto flex flex-col p-5 gap-5 relative",
7736
7736
  className
7737
7737
  ),
7738
7738
  children: [
7739
7739
  /* @__PURE__ */ jsx(FormHeader, {}),
7740
- /* @__PURE__ */ jsxs(CardContent, { className: "space-y-[1px]", children: [
7740
+ /* @__PURE__ */ jsxs(CardContent, { className: "space-y-[1px] p-0", children: [
7741
7741
  /* @__PURE__ */ jsx(
7742
7742
  SwapSection,
7743
7743
  {
@@ -7770,7 +7770,7 @@ const EvaaBridgeContent = ({
7770
7770
  /* @__PURE__ */ jsx(AnotherAddress, {}),
7771
7771
  /* @__PURE__ */ jsx(SubmitButton, {})
7772
7772
  ] }),
7773
- /* @__PURE__ */ jsx(CardFooter, { children: /* @__PURE__ */ jsx(Details, {}) })
7773
+ /* @__PURE__ */ jsx(CardFooter, { className: "p-0", children: /* @__PURE__ */ jsx(Details, {}) })
7774
7774
  ]
7775
7775
  }
7776
7776
  ),