From 46898aef5f6e238dbfe1b54cf1cf99a276b7d114 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 29 Feb 2024 01:24:49 -0300 Subject: wip wallet activity --- .../src/components/Modal.tsx | 73 +++++++++++----------- 1 file changed, 38 insertions(+), 35 deletions(-) (limited to 'packages/taler-wallet-webextension/src/components/Modal.tsx') diff --git a/packages/taler-wallet-webextension/src/components/Modal.tsx b/packages/taler-wallet-webextension/src/components/Modal.tsx index 11fa72181..5553c72df 100644 --- a/packages/taler-wallet-webextension/src/components/Modal.tsx +++ b/packages/taler-wallet-webextension/src/components/Modal.tsx @@ -18,7 +18,7 @@ import { styled } from "@linaria/react"; import { ComponentChildren, h, VNode } from "preact"; import { ButtonHandler } from "../mui/handlers.js"; import closeIcon from "../svg/close_24px.inline.svg"; -import { Link, LinkPrimary, LinkWarning } from "./styled/index.js"; +import { Link } from "./styled/index.js"; interface Props { children: ComponentChildren; @@ -52,40 +52,43 @@ const Body = styled.div` export function Modal({ title, children, onClose }: Props): VNode { return ( - -
e.stopPropagation()} - style={{ - background: "white", - width: 600, - height: "80%", - margin: "auto", - borderRadius: 8, - padding: 8, - // overflow: "scroll", - }} - > -
-
-

{title}

-
- -
- -
-
+
- e.stopPropagation()}>{children} -
- + +
e.stopPropagation()} + style={{ + background: "white", + width: 600, + height: "80%", + margin: "auto", + borderRadius: 8, + padding: 8, + // overflow: "scroll", + }} + > +
+
+

{title}

+
+ +
+ +
+
+ + e.stopPropagation()}>{children} +
+
+
); } -- cgit v1.2.3