summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-03-28 14:03:59 -0300
committerSebastian <sebasjm@gmail.com>2022-03-28 14:04:06 -0300
commit1d85662946c393ea6985c178842be40d38fc687d (patch)
treec01293631a6fc13810458ea4638bb3f8daa4c389 /packages/taler-wallet-webextension/src/components
parent2ba6692c6ad97285e852fb0b74a650e067817003 (diff)
downloadwallet-core-1d85662946c393ea6985c178842be40d38fc687d.tar.gz
wallet-core-1d85662946c393ea6985c178842be40d38fc687d.tar.bz2
wallet-core-1d85662946c393ea6985c178842be40d38fc687d.zip
storybook like page for dev, plus some style fixes
Diffstat (limited to 'packages/taler-wallet-webextension/src/components')
-rw-r--r--packages/taler-wallet-webextension/src/components/MultiActionButton.tsx9
-rw-r--r--packages/taler-wallet-webextension/src/components/styled/index.tsx13
2 files changed, 20 insertions, 2 deletions
diff --git a/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx b/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
index 866bd0379..d1b5e45ad 100644
--- a/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
+++ b/packages/taler-wallet-webextension/src/components/MultiActionButton.tsx
@@ -89,10 +89,17 @@ export function MultiActionButton({
marginLeft: 0,
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
+ width: 36,
+ padding: 4,
+ height: 36,
+ fill: "white",
}}
>
<div
- style={{ height: 14 }}
+ style={{
+ height: 24,
+ width: 24,
+ }}
dangerouslySetInnerHTML={{ __html: arrowDown }}
/>
</ButtonPrimary>
diff --git a/packages/taler-wallet-webextension/src/components/styled/index.tsx b/packages/taler-wallet-webextension/src/components/styled/index.tsx
index e1b4dd2ac..f01e97eea 100644
--- a/packages/taler-wallet-webextension/src/components/styled/index.tsx
+++ b/packages/taler-wallet-webextension/src/components/styled/index.tsx
@@ -66,6 +66,17 @@ export const WalletActionOld = styled.section`
}
`;
+export const Title = styled.h1`
+ font-size: 2em;
+ margin-top: 1em;
+ margin-bottom: 1em;
+`;
+export const SubTitle = styled.h1`
+ font-size: 1.5em;
+ margin-top: 1em;
+ margin-bottom: 1em;
+`;
+
export const DateSeparator = styled.div`
color: gray;
margin: 0.2em;
@@ -140,7 +151,7 @@ export const Middle = styled.div`
height: 100%;
`;
-export const PopupBox = styled.div<{ noPadding?: boolean; devMode: boolean }>`
+export const PopupBox = styled.div<{ noPadding?: boolean; devMode?: boolean }>`
height: 290px;
width: 500px;
overflow-y: visible;