diff --git a/resources/public/output.css b/resources/public/output.css index de06df74..2a5b7a55 100644 --- a/resources/public/output.css +++ b/resources/public/output.css @@ -1601,8 +1601,8 @@ input:checked + .toggle-bg { width: 30em; } -.w-\[50em\] { - width: 50em; +.w-\[34em\] { + width: 34em; } .w-\[5em\] { diff --git a/src/clj/auto_ap/ssr/invoice/new_invoice_wizard.clj b/src/clj/auto_ap/ssr/invoice/new_invoice_wizard.clj index d7b586f4..9529abac 100644 --- a/src/clj/auto_ap/ssr/invoice/new_invoice_wizard.clj +++ b/src/clj/auto_ap/ssr/invoice/new_invoice_wizard.clj @@ -675,7 +675,7 @@ (com/modal {} (com/modal-card-advanced {:class "transition duration-300 ease-in-out scale-100 translate-x-0 opacity-100"} - (com/modal-header {} [:div.p-2 "Invoice accounts "]) + (com/modal-header {} [:div.p-2 "Invoice created"]) (com/modal-body {} [:p.text-lg "Would you like to pay this invoice now?"] diff --git a/src/clj/auto_ap/ssr/invoices.clj b/src/clj/auto_ap/ssr/invoices.clj index 07c67389..4b50efec 100644 --- a/src/clj/auto_ap/ssr/invoices.clj +++ b/src/clj/auto_ap/ssr/invoices.clj @@ -1109,7 +1109,7 @@ (defn- pay-modal-card [{:keys [head body footer]}] (com/modal-card-advanced - {:class "w-[50em]"} + {:class "w-[34em]"} (com/modal-header {} head) (com/modal-body {} body) (when footer (com/modal-footer {} footer))))