summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/popup/History.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-20 20:52:30 -0300
committerSebastian <sebasjm@gmail.com>2021-06-20 20:52:38 -0300
commit6a2943618e97d3aa62f19aabb403b0bae08b63e9 (patch)
tree55740c84a1a027d0a7afe0c0b3d887336c00850f /packages/taler-wallet-webextension/src/popup/History.tsx
parent956fc35a20466ac5ae0889c08b05176207c0a54d (diff)
downloadwallet-core-6a2943618e97d3aa62f19aabb403b0bae08b63e9.tar.gz
wallet-core-6a2943618e97d3aa62f19aabb403b0bae08b63e9.tar.bz2
wallet-core-6a2943618e97d3aa62f19aabb403b0bae08b63e9.zip
fix height, wallet popup should stay at 400x320
Diffstat (limited to 'packages/taler-wallet-webextension/src/popup/History.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/popup/History.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/popup/History.tsx b/packages/taler-wallet-webextension/src/popup/History.tsx
index 1a70f00ff..f055f6cb0 100644
--- a/packages/taler-wallet-webextension/src/popup/History.tsx
+++ b/packages/taler-wallet-webextension/src/popup/History.tsx
@@ -42,7 +42,7 @@ export function HistoryPage(props: any): JSX.Element {
}
export function HistoryView({ list }: { list: Transaction[] }) {
- return <div style={{ height: 'calc(20rem - 34px )', overflow: 'auto', width: '100%' }}>
+ return <div style={{ height: 'calc(320px - 34px - 2em)', overflow: 'auto', width: '100%' }}>
{list.map((tx, i) => (
<TransactionItem key={i} tx={tx} />
))}