Skip to content

Commit

Permalink
allow wallet contents to scroll
Browse files Browse the repository at this point in the history
when you have lots of items in wallet it takes over the screen, this is
just a hacky fix to cap the height and let it scroll after 3ish rows
  • Loading branch information
chrisfarms committed May 11, 2024
1 parent 8470bec commit c850530
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/components/panels/wallet-items-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ const WalletItemsItemStyles = () => css`
.taskContainer {
font-size: 1.4rem;
padding: var(--panel-padding) var(--panel-padding) 0 var(--panel-padding);
overflow: scroll;
max-height: 22rem;
}
.buttonContainer {
Expand Down

0 comments on commit c850530

Please sign in to comment.