@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.
@@ -1704,7 +1704,7 @@ const FormHeaderComponent = () => {
1704
1704
  const sum = selectedAssetSymbol.toUpperCase();
1705
1705
  return assets.find((a) => a.symbol.toUpperCase() === sum) ?? assets[0];
1706
1706
  }, [assets, selectedAssetSymbol]);
1707
- return /* @__PURE__ */ jsxRuntime.jsxs(card.CardHeader, { className: "gap-y-0 flex flex-row justify-between items-center", children: [
1707
+ return /* @__PURE__ */ jsxRuntime.jsxs(card.CardHeader, { className: "gap-y-0 p-0 flex flex-row justify-between items-center", children: [
1708
1708
  /* @__PURE__ */ jsxRuntime.jsxs(card.CardTitle, { className: "flex items-center gap-3", children: [
1709
1709
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-normal leading-4 text-muted-foreground", children: t("bridge.selectToken") }),
1710
1710
  /* @__PURE__ */ jsxRuntime.jsx(SelectTokenButton, { token: current, onClick: onOpen })
@@ -7755,12 +7755,12 @@ const EvaaBridgeContent = ({
7755
7755
  card.Card,
7756
7756
  {
7757
7757
  className: utils.cn(
7758
- "max-w-md w-full mx-auto flex flex-col relative",
7758
+ "max-w-md w-full mx-auto flex flex-col p-5 gap-5 relative",
7759
7759
  className
7760
7760
  ),
7761
7761
  children: [
7762
7762
  /* @__PURE__ */ jsxRuntime.jsx(FormHeader, {}),
7763
- /* @__PURE__ */ jsxRuntime.jsxs(card.CardContent, { className: "space-y-[1px]", children: [
7763
+ /* @__PURE__ */ jsxRuntime.jsxs(card.CardContent, { className: "space-y-[1px] p-0", children: [
7764
7764
  /* @__PURE__ */ jsxRuntime.jsx(
7765
7765
  SwapSection,
7766
7766
  {
@@ -7793,7 +7793,7 @@ const EvaaBridgeContent = ({
7793
7793
  /* @__PURE__ */ jsxRuntime.jsx(AnotherAddress, {}),
7794
7794
  /* @__PURE__ */ jsxRuntime.jsx(SubmitButton, {})
7795
7795
  ] }),
7796
- /* @__PURE__ */ jsxRuntime.jsx(card.CardFooter, { children: /* @__PURE__ */ jsxRuntime.jsx(Details, {}) })
7796
+ /* @__PURE__ */ jsxRuntime.jsx(card.CardFooter, { className: "p-0", children: /* @__PURE__ */ jsxRuntime.jsx(Details, {}) })
7797
7797
  ]
7798
7798
  }
7799
7799
  ),