mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
6d92759853
* Restructure advanced gas form errors * Use shared constant for gas errors * Add validation for fields too low * Add warnings for high max fee and max priority fee * Fix lint * Fix priority fee high warning string
36 lines
457 B
SCSS
36 lines
457 B
SCSS
.advanced-gas-controls {
|
|
&__row {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
&__row-heading {
|
|
display: flex;
|
|
}
|
|
|
|
.info-tooltip {
|
|
display: inline-block;
|
|
}
|
|
|
|
&__row-heading-detail {
|
|
flex-grow: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
.form-field__row--error .form-field__heading-title h6 {
|
|
color: $error-1;
|
|
|
|
& path {
|
|
fill: $error-1;
|
|
}
|
|
}
|
|
|
|
h6 {
|
|
padding-bottom: 6px;
|
|
margin-inline-end: 6px;
|
|
}
|
|
|
|
path {
|
|
fill: #dadada;
|
|
}
|
|
}
|