2018-08-09 18:14:03 +02:00
|
|
|
.gas-price-button-group {
|
|
|
|
margin-top: 22px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
|
|
|
|
&__primary-currency {
|
|
|
|
font-size: 18px;
|
|
|
|
height: 20.5px;
|
|
|
|
margin-bottom: 7.5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-estimate {
|
|
|
|
margin-top: 5.5px;
|
|
|
|
color: $silver-chalice;
|
|
|
|
height: 15.4px;
|
|
|
|
}
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
&__loading-container {
|
|
|
|
height: 130px;
|
|
|
|
}
|
2018-08-09 18:14:03 +02:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
.button-group__button,
|
|
|
|
.button-group__button--active {
|
2018-08-09 18:14:03 +02:00
|
|
|
height: 130px;
|
|
|
|
max-width: 108px;
|
|
|
|
font-size: 12px;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
padding-top: 17px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 2px solid $spindle;
|
|
|
|
background: $white;
|
|
|
|
color: $scorpion;
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
&:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group__button--active {
|
2020-07-17 20:11:04 +02:00
|
|
|
border: 2px solid $primary-blue;
|
2018-08-09 18:14:03 +02:00
|
|
|
color: $scorpion;
|
|
|
|
|
|
|
|
i {
|
|
|
|
&:last-child {
|
|
|
|
display: flex;
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-top: 8px;
|
2018-08-09 18:14:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
|
|
|
|
.gas-price-button-group--small {
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 54px;
|
2018-12-12 17:14:47 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
max-width: 260px;
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
|
|
|
|
&__button-fiat-price {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button-label {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-weight: 500;
|
2019-04-18 05:11:04 +02:00
|
|
|
line-height: 16px;
|
|
|
|
padding-bottom: 4px;
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__primary-currency {
|
|
|
|
font-size: 12px;
|
2019-04-18 05:11:04 +02:00
|
|
|
line-height: 12px;
|
|
|
|
padding-bottom: 2px;
|
2018-12-03 21:13:32 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__secondary-currency {
|
|
|
|
font-size: 12px;
|
2019-04-18 05:11:04 +02:00
|
|
|
line-height: 12px;
|
|
|
|
padding-bottom: 2px;
|
2018-12-03 21:13:32 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__loading-container {
|
2019-04-17 21:15:13 +02:00
|
|
|
height: 54px;
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
.button-group__button,
|
|
|
|
.button-group__button--active {
|
2018-09-13 14:35:17 +02:00
|
|
|
background: white;
|
|
|
|
color: $scorpion;
|
2019-04-18 05:11:04 +02:00
|
|
|
padding: 0 4px;
|
2018-11-08 17:03:31 +01:00
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
&:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group__button--active {
|
|
|
|
color: $white;
|
|
|
|
background: $dodger-blue;
|
|
|
|
|
|
|
|
i {
|
|
|
|
&:last-child {
|
|
|
|
display: flex;
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-top: 10px;
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-25 05:55:39 +02:00
|
|
|
|
|
|
|
.gas-price-button-group--alt {
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
2018-11-27 18:30:41 +01:00
|
|
|
width: 95%;
|
2018-10-25 05:55:39 +02:00
|
|
|
|
|
|
|
&__button-fiat-price {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button-label {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 10px;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__primary-currency {
|
|
|
|
font-size: 11px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__secondary-currency {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__loading-container {
|
|
|
|
height: 78px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__time-estimate {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-top: 4px;
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
.button-group__button,
|
|
|
|
.button-group__button--active {
|
2018-10-25 05:55:39 +02:00
|
|
|
height: 78px;
|
|
|
|
background: white;
|
2020-07-15 15:13:40 +02:00
|
|
|
color: #2a4055;
|
2018-10-25 05:55:39 +02:00
|
|
|
width: 108px;
|
|
|
|
height: 97px;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.151579);
|
2018-10-25 05:55:39 +02:00
|
|
|
border-radius: 6px;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: flex;
|
2020-07-15 15:13:40 +02:00
|
|
|
flex-flow: column;
|
2018-10-25 05:55:39 +02:00
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: flex-start;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-check-wrapper {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-group__button--active {
|
2020-07-15 15:13:40 +02:00
|
|
|
background: #f7fcff;
|
|
|
|
border: 2px solid #2c8bdc;
|
2018-10-25 05:55:39 +02:00
|
|
|
|
|
|
|
.button-check-wrapper {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
border-radius: 8px;
|
|
|
|
position: absolute;
|
|
|
|
top: -11px;
|
|
|
|
right: -10px;
|
2020-07-15 15:13:40 +02:00
|
|
|
background: #d5ecfa;
|
2018-10-25 05:55:39 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
display: flex;
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2018-10-25 05:55:39 +02:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|