Skip to content

Commit

Permalink
Fix overflowing UI & buttons in Signature Request screens (#18247)
Browse files Browse the repository at this point in the history
* signature-req: fix overflow ui

* signature-req: fix uneven btn height
  • Loading branch information
digiwand authored Mar 23, 2023
1 parent 8c310a0 commit 4474359
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions ui/components/app/signature-request-original/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
}

&__body {
width: 100%;
height: 100%;
display: flex;
flex-flow: column;
flex: 1 1 auto;
flex: 1 1 0;
min-height: 0;
max-width: 100%;
}

&__origin {
Expand All @@ -92,18 +92,18 @@
}

&__rows {
height: 100%;
overflow-y: auto;
overflow-x: hidden;
border-top: 1px solid var(--color-border-default);
display: flex;
flex-flow: column;
flex: 1 1 0;
min-height: 0;
}

&__row {
display: flex;
flex-flow: column;
flex: 1 0 auto;
}

&__row-title {
Expand Down
2 changes: 1 addition & 1 deletion ui/components/ui/page-container/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
margin-right: 0;

&:first-of-type {
margin-bottom: 0;
margin-right: 4px;
}
}
}
Expand Down

0 comments on commit 4474359

Please sign in to comment.