commit 1c009f9ef39d9e3f0aed9510e8134c6e446d36a4
parent 0060f260e31d5fb6c35b3d403ae550c32dbd0838
Author: Sebastian <sebasjm@taler-systems.com>
Date: Wed, 11 Mar 2026 17:40:09 -0300
fix #10904
Diffstat:
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/paths/login/index.tsx b/packages/merchant-backoffice-ui/src/paths/login/index.tsx
@@ -130,11 +130,11 @@ export function LoginPage({ showCreateAccount, focus }: Props): VNode {
}
return (
- <Fragment>
+ <div>
<LocalNotificationBannerBulma notification={notification} />
<div class="columns is-centered" style={{ margin: "auto" }}>
<div class="column is-two-thirds ">
- <div class="modal-card" style={{ width: "100%", margin: 0 }}>
+ <div style={{ width: "100%", margin: 0 }}>
<header
class="modal-card-head"
style={{ border: "1px solid", borderBottom: 0 }}
@@ -146,7 +146,7 @@ export function LoginPage({ showCreateAccount, focus }: Props): VNode {
<FormProvider>
<section
class="modal-card-body"
- style={{ border: "1px solid", borderTop: 0, borderBottom: 0 }}
+ style={{ borderRight: "1px solid",borderLeft: "1px solid", borderTop: 0, borderBottom: 0, overflow: "hidden"}}
>
<div class="field is-horizontal">
<div class="field-label is-normal">
@@ -260,6 +260,6 @@ export function LoginPage({ showCreateAccount, focus }: Props): VNode {
)}
</div>
</div>
- </Fragment>
+ </div>
);
}
diff --git a/packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx b/packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx
@@ -254,10 +254,9 @@ export function NewAccount({ onCancel, onCreated }: Props): VNode {
return (
<Fragment>
<LocalNotificationBannerBulma notification={notification} />
-
<div class="columns is-centered" style={{ margin: "auto" }}>
<div class="column is-two-thirds ">
- <div class="modal-card" style={{ width: "100%", margin: 0 }}>
+ <div style={{ width: "100%", margin: 0 }}>
<header
class="modal-card-head"
style={{ border: "1px solid", borderBottom: 0 }}