1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix overflowing UI & buttons in Signature Request screens (#18247)

* signature-req: fix overflow ui

* signature-req: fix uneven btn height
This commit is contained in:
Ariella Vu 2023-03-23 05:55:00 -07:00 committed by PeterYinusa
parent 74f566f7f3
commit cba9ba6198
2 changed files with 6 additions and 6 deletions

View File

@ -62,11 +62,11 @@
} }
&__body { &__body {
width: 100%;
height: 100%;
display: flex; display: flex;
flex-flow: column; flex-flow: column;
flex: 1 1 auto; flex: 1 1 0;
min-height: 0;
max-width: 100%;
} }
&__origin { &__origin {
@ -92,18 +92,18 @@
} }
&__rows { &__rows {
height: 100%;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
border-top: 1px solid var(--color-border-default); border-top: 1px solid var(--color-border-default);
display: flex; display: flex;
flex-flow: column; flex-flow: column;
flex: 1 1 0;
min-height: 0;
} }
&__row { &__row {
display: flex; display: flex;
flex-flow: column; flex-flow: column;
flex: 1 0 auto;
} }
&__row-title { &__row-title {

View File

@ -190,7 +190,7 @@
margin-right: 0; margin-right: 0;
&:first-of-type { &:first-of-type {
margin-bottom: 0; margin-right: 4px;
} }
} }
} }