mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
45916b9624
* fix issue wherein signing a message sometimes doesn't allow you to scroll all the way to the bottom done in a way to make it as mergeable as possible * Fixing length-zero-no-unit lint issue Co-authored-by: ryanml <ryanlanese@gmail.com>
25 lines
361 B
SCSS
25 lines
361 B
SCSS
.signature-request-footer {
|
|
display: flex;
|
|
box-shadow: inset 0 1px 0 var(--color-border-muted);
|
|
|
|
button {
|
|
text-transform: uppercase;
|
|
flex: 1;
|
|
margin: 1rem 0.5rem;
|
|
}
|
|
|
|
button:first-child {
|
|
flex: 1 1 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
button:last-child {
|
|
flex: 1 1 100%;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
&__tooltip {
|
|
display: flex;
|
|
}
|
|
}
|