coinley-checkout 0.5.3 → 0.5.5

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.
@@ -20880,7 +20880,7 @@ const PaymentMethods = ({ onSelect, selected, theme: theme2 = "light", supported
20880
20880
  };
20881
20881
  return isAvailable ? `${walletNames[wallet]} detected - Ready to pay` : `${walletNames[wallet]} required - Please install to continue`;
20882
20882
  }
20883
- return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
20883
+ return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { classname: "bg-white", children: [
20884
20884
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "mb-6", children: [
20885
20885
  /* @__PURE__ */ jsxRuntimeExports.jsx("label", { className: `block text-sm font-medium mb-2 ${theme2 === "dark" ? "text-white" : "text-gray-700"}`, children: "Blockchain Network" }),
20886
20886
  /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -21037,7 +21037,7 @@ const CoinleyModal = ({
21037
21037
  payment && /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "coinley-payment-info mb-6", children: [
21038
21038
  /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "text-center", children: [
21039
21039
  /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "text-sm text-gray-600", children: "Total Amount" }),
21040
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "coinley-amount-display text-4xl font-extrabold", children: [
21040
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "coinley-amount-display text-4xl font-extrabold text-[#7042D2]", children: [
21041
21041
  "$",
21042
21042
  formatAmount(payment.totalAmount || payment.amount)
21043
21043
  ] })