2021-11-18 18:54:58 +01:00
|
|
|
.edit-gas-item {
|
|
|
|
border-radius: 24px;
|
2021-11-23 19:18:44 +01:00
|
|
|
background: white;
|
2021-11-18 18:54:58 +01:00
|
|
|
color: $ui-4;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
2021-11-18 20:08:29 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-11-18 18:54:58 +01:00
|
|
|
margin: 12px 0;
|
|
|
|
padding: 4px 12px;
|
|
|
|
height: 32px;
|
2021-11-23 19:18:44 +01:00
|
|
|
width: 100%;
|
2021-11-18 18:54:58 +01:00
|
|
|
|
2021-12-03 16:59:48 +01:00
|
|
|
&--selected {
|
2021-11-18 18:54:58 +01:00
|
|
|
background-color: $ui-1;
|
|
|
|
}
|
|
|
|
|
2021-11-18 20:08:29 +01:00
|
|
|
&-disabled {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2021-11-18 18:54:58 +01:00
|
|
|
&__name {
|
2021-11-18 20:08:29 +01:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2021-11-18 18:54:58 +01:00
|
|
|
color: $ui-black;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
margin-right: 4px;
|
2021-11-18 20:08:29 +01:00
|
|
|
|
|
|
|
&-custom {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 0;
|
|
|
|
}
|
2021-11-18 18:54:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__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;
|
|
|
|
}
|
|
|
|
}
|