mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
d1c5274738
* Ensure sign message button is only enabled on scroll * Add button for message scrolling to signature request screen * lint fix * Only show scroll button if message is scrollable Co-authored-by: ryanml <ryanlanese@gmail.com>
25 lines
339 B
SCSS
25 lines
339 B
SCSS
.signature-request-footer {
|
|
display: flex;
|
|
border-top: 1px solid #d2d8dd;
|
|
|
|
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;
|
|
}
|
|
}
|