mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
40269ad13c
* Fixing signature request formatting, requiring scroll before sign * Ensure sign button not disable when no scroll is required * Test fix attempt #1 * Clean up e2e tests Co-authored-by: Dan Miller <danjm.com@gmail.com>
61 lines
930 B
SCSS
61 lines
930 B
SCSS
.signature-request-message {
|
|
flex: 1 60%;
|
|
display: flex;
|
|
max-height: 250px;
|
|
flex-direction: column;
|
|
|
|
&__title {
|
|
@include H6;
|
|
|
|
font-weight: 500;
|
|
color: #636778;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
h2 {
|
|
@include H6;
|
|
|
|
flex: 1 1 0;
|
|
text-align: left;
|
|
border-bottom: 1px solid #d2d8dd;
|
|
padding: 0.5rem;
|
|
margin: 0;
|
|
color: #ccc;
|
|
}
|
|
|
|
&--root {
|
|
flex: 1 100%;
|
|
background-color: #f8f9fb;
|
|
padding-bottom: 0.5rem;
|
|
overflow: auto;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
&--node,
|
|
&--node-leaf {
|
|
padding-left: 0.3rem;
|
|
|
|
&-label {
|
|
color: #5b5d67;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
&-value {
|
|
color: black;
|
|
margin-left: 0.5rem;
|
|
white-space: pre-line;
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
|
|
&--node-leaf {
|
|
display: flex;
|
|
}
|
|
}
|