diff options
| author | Sebastian <sebasjm@gmail.com> | 2021-06-21 10:07:56 -0300 |
|---|---|---|
| committer | Sebastian <sebasjm@gmail.com> | 2021-06-21 10:08:35 -0300 |
| commit | 0d86f84dc004c9d22d5df83182a58199d3349071 (patch) | |
| tree | d5cec9606533454ad5fc06ca400cad3e8dc470cf /packages/taler-wallet-webextension/src/popup/History.tsx | |
| parent | c7f0e483232a01c1165c8146285b915f766dba78 (diff) | |
fix some pixel and css classes and sync storybook
Diffstat (limited to 'packages/taler-wallet-webextension/src/popup/History.tsx')
| -rw-r--r-- | packages/taler-wallet-webextension/src/popup/History.tsx | 2 |
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 f055f6cb0..e76e656c1 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(320px - 34px - 2em)', overflow: 'auto', width: '100%' }}> + return <div style={{ height: 'calc(320px - 34px - 16px)', overflow: 'auto' }}> {list.map((tx, i) => ( <TransactionItem key={i} tx={tx} /> ))} |
