mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
0daefe9ea0
Edit transaction screen changes for EIP-1559 V2
57 lines
831 B
SCSS
57 lines
831 B
SCSS
.edit-gas-item {
|
|
border-radius: 24px;
|
|
color: $ui-4;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
margin: 12px 0;
|
|
padding: 4px 12px;
|
|
height: 32px;
|
|
|
|
&--selected {
|
|
background-color: $ui-1;
|
|
}
|
|
|
|
&__name {
|
|
display: inline-block;
|
|
color: $ui-black;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
width: 40%;
|
|
}
|
|
|
|
&__icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&__time-estimate {
|
|
display: inline-block;
|
|
width: 20%;
|
|
}
|
|
|
|
&__fee-estimate {
|
|
display: inline-block;
|
|
width: 30%;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&__tooltip {
|
|
display: inline-block;
|
|
text-align: right;
|
|
width: 10%;
|
|
|
|
.info-tooltip {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&__time-estimate-low,
|
|
&__fee-estimate-high {
|
|
color: $secondary-1;
|
|
}
|
|
|
|
&__time-estimate-medium,
|
|
&__time-estimate-high {
|
|
color: $success-3;
|
|
}
|
|
}
|