2017-08-22 01:59:00 +02:00
|
|
|
.send-screen-wrapper {
|
|
|
|
display: flex;
|
2017-09-14 10:32:24 +02:00
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
2017-08-22 02:59:08 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
2017-09-14 18:56:40 +02:00
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
2017-09-14 20:45:59 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2017-09-14 20:45:59 +02:00
|
|
|
section {
|
|
|
|
flex: 0 0 auto;
|
2017-08-22 02:59:08 +02:00
|
|
|
}
|
2017-08-22 01:59:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-card {
|
2017-09-14 10:32:24 +02:00
|
|
|
background-color: #fff;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
2017-09-14 10:32:24 +02:00
|
|
|
padding: 46px 40.5px 26px;
|
|
|
|
position: relative;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
width: 498px;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 1 0 auto;
|
2017-09-14 18:56:40 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
2017-08-22 01:59:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Send Screen */
|
|
|
|
|
|
|
|
.send-screen section {
|
|
|
|
margin: 4px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-08-22 01:59:00 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2017-08-22 18:03:42 +02:00
|
|
|
|
|
|
|
.send-eth-icon {
|
2017-09-14 10:32:24 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
2017-08-22 18:03:42 +02:00
|
|
|
border: 1px solid $alto;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
|
2017-09-14 10:32:24 +02:00
|
|
|
position: absolute;
|
|
|
|
top: -35px;
|
|
|
|
z-index: 25;
|
|
|
|
padding: 4px;
|
|
|
|
background-color: $white;
|
2017-09-14 18:56:40 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
2017-08-22 21:47:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input-wrapper {
|
|
|
|
width: 95%;
|
2017-08-24 18:24:48 +02:00
|
|
|
position: relative;
|
2017-09-12 08:18:54 +02:00
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
.fa-bolt {
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.large-input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
border: 1px solid $dusty-gray;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 4px 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-gas-input {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2017-09-12 08:18:54 +02:00
|
|
|
&__error-message {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--error {
|
|
|
|
input,
|
|
|
|
.send-screen-gas-input {
|
|
|
|
border-color: $red !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input-wrapper__error-message {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-09-12 08:18:54 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 8px;
|
|
|
|
color: $red;
|
|
|
|
}
|
|
|
|
}
|
2017-09-20 19:37:12 +02:00
|
|
|
|
|
|
|
.send-screen-input-wrapper__error-message {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-09-20 19:37:12 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 8px;
|
|
|
|
color: $red;
|
|
|
|
}
|
2017-08-22 21:47:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-22 22:09:27 +02:00
|
|
|
.send-screen-gas-input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-08-22 22:09:27 +02:00
|
|
|
width: 100%;
|
2017-08-26 01:25:03 +02:00
|
|
|
height: 41px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #f3f3f3;
|
2017-08-29 17:39:47 +02:00
|
|
|
border-width: 0;
|
2017-08-22 22:09:27 +02:00
|
|
|
border-style: none;
|
2017-08-26 01:25:03 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 12px;
|
2017-08-28 19:14:01 +02:00
|
|
|
color: $scorpion;
|
2017-08-22 22:09:27 +02:00
|
|
|
}
|
|
|
|
|
2017-08-22 21:47:48 +02:00
|
|
|
.send-screen-amount-labels {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-gas-labels {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2017-08-22 22:09:27 +02:00
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
.currency-toggle {
|
|
|
|
&__item {
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2017-09-12 07:14:09 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&--selected {
|
|
|
|
color: $black;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2017-08-25 22:01:56 +02:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:24:48 +02:00
|
|
|
.send-screen-gas-input-customize {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2017-08-24 18:24:48 +02:00
|
|
|
cursor: pointer;
|
2017-08-24 21:55:03 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 19:39:05 +02:00
|
|
|
.gas-tooltip-close-area {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
.customize-gas-tooltip-container {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 50px;
|
2017-08-24 21:55:03 +02:00
|
|
|
width: 237px;
|
|
|
|
height: 307px;
|
2017-08-29 17:39:47 +02:00
|
|
|
background-color: $white;
|
2017-08-24 21:55:03 +02:00
|
|
|
opacity: 1;
|
2017-08-29 17:39:47 +02:00
|
|
|
box-shadow: $alto 0 0 5px;
|
2017-08-24 21:55:03 +02:00
|
|
|
z-index: 1050;
|
2017-08-25 18:18:52 +02:00
|
|
|
padding: 13px 19px;
|
|
|
|
border-radius: 4px;
|
2017-08-29 17:39:47 +02:00
|
|
|
font-weight: 500;
|
2017-08-25 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-arrow {
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
z-index: 1200;
|
2017-08-29 17:39:47 +02:00
|
|
|
background: $white;
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
left: 107px;
|
|
|
|
top: 294px;
|
|
|
|
box-shadow: 2px 2px 2px $alto;
|
|
|
|
}
|
|
|
|
|
2017-08-29 17:39:47 +02:00
|
|
|
.customize-gas-tooltip-container input[type="number"]::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
2017-08-25 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
2017-08-29 17:39:47 +02:00
|
|
|
.customize-gas-tooltip-container input[type="number"]:hover::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
2017-08-25 18:18:52 +02:00
|
|
|
|
|
|
|
.customize-gas-tooltip {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-08-29 20:39:56 +02:00
|
|
|
.gas-tooltip {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
.gas-tooltip-label {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
color: $tundora;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-header {
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-label {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-label i {
|
|
|
|
color: $silver-chalice;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize-gas-input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
width: 178px;
|
|
|
|
height: 28px;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
color: $nile-blue;
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize-gas-input-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-detail {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 26px;
|
|
|
|
color: $silver-chalice;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-arrows {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
2017-08-29 17:39:47 +02:00
|
|
|
top: 0;
|
2017-10-13 22:19:22 +02:00
|
|
|
right: 4px;
|
2017-08-25 18:18:52 +02:00
|
|
|
width: 17px;
|
|
|
|
height: 28px;
|
|
|
|
border: 1px solid #dadada;
|
2017-08-29 17:39:47 +02:00
|
|
|
border-left: 0;
|
2017-08-25 18:18:52 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
color: #9b9b9b;
|
|
|
|
padding: 1px 4px;
|
2017-10-25 10:08:14 +02:00
|
|
|
cursor: pointer;
|
2017-08-29 17:39:47 +02:00
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
|
2017-09-13 10:25:39 +02:00
|
|
|
.token-gas {
|
|
|
|
&__amount {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__symbol {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
.send-screen {
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
color: $scorpion;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
margin: 10px 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__send-button,
|
|
|
|
&__cancel-button {
|
|
|
|
width: 163px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-09-20 19:37:12 +02:00
|
|
|
|
|
|
|
&__send-button__disabled {
|
2020-07-15 15:13:40 +02:00
|
|
|
opacity: 0.5;
|
2017-09-20 19:37:12 +02:00
|
|
|
cursor: auto;
|
|
|
|
}
|
2017-09-14 10:32:24 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
.send-token {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
&__content {
|
|
|
|
width: 498px;
|
|
|
|
height: 605px;
|
|
|
|
background-color: #fff;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
2017-09-12 07:14:09 +02:00
|
|
|
padding: 46px 40.5px 26px;
|
|
|
|
position: relative;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 1 0 auto;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
2017-09-12 07:14:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
.identicon {
|
|
|
|
position: absolute;
|
|
|
|
top: -35px;
|
|
|
|
z-index: 25;
|
2017-09-14 20:45:59 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
color: $scorpion;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description,
|
|
|
|
&__balance-text,
|
|
|
|
&__token-symbol {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
margin-top: 10px;
|
2017-09-14 20:45:59 +02:00
|
|
|
text-align: center;
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__token-balance {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H1;
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
margin-top: 13px;
|
2017-09-29 01:13:53 +02:00
|
|
|
|
|
|
|
.token-balance__amount {
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
2017-09-11 09:45:06 +02:00
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
&__button-group {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
align-items: center;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
2017-09-12 07:14:09 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
width: 163px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
2017-09-22 23:34:56 +02:00
|
|
|
|
|
|
|
.confirm-send-token {
|
|
|
|
&__hero-amount-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
|
|
|
|
.send-v2 {
|
|
|
|
&__container {
|
|
|
|
width: 380px;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: $white;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
|
2017-10-05 17:44:45 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
box-shadow: none;
|
2017-10-25 07:43:49 +02:00
|
|
|
flex: 1 1 auto;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__send-header-icon-container {
|
|
|
|
z-index: 25;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__send-header-icon {
|
2017-10-05 17:44:45 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border: 1px solid $alto;
|
|
|
|
z-index: 25;
|
|
|
|
padding: 4px;
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__send-arrow-icon {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-10-05 17:44:45 +02:00
|
|
|
color: #f28930;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__arrow-background {
|
|
|
|
background-color: $white;
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
position: absolute;
|
|
|
|
top: 52px;
|
|
|
|
left: 199px;
|
|
|
|
border-radius: 50%;
|
|
|
|
z-index: 100;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
top: 36px;
|
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
height: 88px;
|
|
|
|
width: 380px;
|
|
|
|
background-color: $athens-grey;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
height: 59px;
|
2017-10-25 10:08:14 +02:00
|
|
|
width: 100vw;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header-tip {
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
background: $athens-grey;
|
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
left: 178px;
|
2017-10-25 10:08:14 +02:00
|
|
|
top: 75px;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
top: 46px;
|
2017-10-25 10:08:14 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H3;
|
|
|
|
|
2017-10-05 17:44:45 +02:00
|
|
|
color: $scorpion;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-10-05 17:44:45 +02:00
|
|
|
color: $gray;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 287px;
|
|
|
|
}
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
&__error {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
left: 8px;
|
|
|
|
color: $red;
|
|
|
|
}
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
&__error-amount {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2019-01-23 19:09:56 +01:00
|
|
|
&__warning {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-01-23 19:09:56 +01:00
|
|
|
left: 8px;
|
|
|
|
color: $orange;
|
|
|
|
}
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
&__error-border {
|
|
|
|
color: $red;
|
|
|
|
}
|
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__form {
|
2017-10-19 19:53:56 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2017-10-25 07:43:49 +02:00
|
|
|
margin: 0;
|
2017-10-19 23:08:52 +02:00
|
|
|
flex: 1 1 auto;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-25 07:43:49 +02:00
|
|
|
&__form-header,
|
|
|
|
&__form-header-copy {
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: center;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__form-row {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin: 1rem 1rem 0;
|
2017-10-06 06:34:00 +02:00
|
|
|
position: relative;
|
2017-10-19 19:53:56 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
flex: 1 0 auto;
|
2017-10-06 06:34:00 +02:00
|
|
|
justify-content: space-between;
|
2020-10-29 16:03:45 +01:00
|
|
|
align-items: center;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
&__form-field-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 277px;
|
|
|
|
}
|
|
|
|
|
2017-10-19 19:53:56 +02:00
|
|
|
&__form-field {
|
|
|
|
flex: 1 1 auto;
|
2018-11-20 01:06:34 +01:00
|
|
|
min-width: 0;
|
2018-02-13 07:39:15 +01:00
|
|
|
|
|
|
|
.currency-display {
|
|
|
|
color: $tundora;
|
|
|
|
|
|
|
|
&__currency-symbol {
|
|
|
|
color: $tundora;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__converted-value,
|
|
|
|
&__converted-currency {
|
|
|
|
color: $tundora;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-list-item {
|
|
|
|
&__account-secondary-balance {
|
|
|
|
color: $tundora;
|
|
|
|
}
|
|
|
|
}
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__form-label {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
color: $scorpion;
|
2019-02-06 01:24:28 +01:00
|
|
|
width: 95px;
|
2018-11-20 01:06:34 +01:00
|
|
|
flex: 0 0 auto;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__from-dropdown,
|
|
|
|
&__asset-dropdown {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
2017-10-06 06:34:00 +02:00
|
|
|
border: 1px solid $alto;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
|
|
|
color: $tundora;
|
2017-10-30 23:39:27 +01:00
|
|
|
position: relative;
|
2017-10-06 06:34:00 +02:00
|
|
|
|
|
|
|
&__close-area {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-01-12 01:30:07 +01:00
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__list {
|
|
|
|
z-index: 1050;
|
|
|
|
position: absolute;
|
|
|
|
height: 220px;
|
2017-10-30 23:39:27 +01:00
|
|
|
width: 100%;
|
2017-10-06 06:34:00 +02:00
|
|
|
border: 1px solid $geyser;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.11);
|
2017-10-06 06:34:00 +02:00
|
|
|
margin-top: 11px;
|
|
|
|
margin-left: -1px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__from-dropdown {
|
|
|
|
height: 73px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-dropdown {
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 54px;
|
2019-04-17 21:15:13 +02:00
|
|
|
border: none;
|
2021-02-19 20:03:44 +01:00
|
|
|
position: relative;
|
2019-04-17 21:15:13 +02:00
|
|
|
|
2019-07-24 01:51:13 +02:00
|
|
|
&__single-asset {
|
|
|
|
display: flex;
|
2020-07-15 15:13:40 +02:00
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 8px;
|
2019-07-24 01:51:13 +02:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: rgba($alto, 0.2);
|
|
|
|
}
|
2019-07-24 01:51:13 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 20:03:44 +01:00
|
|
|
&__caret {
|
|
|
|
color: $silver;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__asset {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2019-04-18 05:11:04 +02:00
|
|
|
padding: 0 8px;
|
2019-04-17 21:15:13 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: rgba($alto, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-icon {
|
|
|
|
.identicon {
|
|
|
|
border: 1px solid $alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-data {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
margin-left: 8px;
|
2020-03-16 23:50:07 +01:00
|
|
|
flex-grow: 1;
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__symbol {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
&__label {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-right: 0.25rem;
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close-area {
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
z-index: 2050;
|
|
|
|
position: absolute;
|
|
|
|
height: 220px;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid $geyser;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
2020-07-15 15:13:40 +02:00
|
|
|
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.11);
|
2019-04-18 05:11:04 +02:00
|
|
|
top: 65px;
|
2019-04-17 21:15:13 +02:00
|
|
|
left: 0;
|
|
|
|
box-sizing: content-box;
|
|
|
|
overflow-y: scroll;
|
2019-04-18 05:11:04 +02:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 4px 0;
|
|
|
|
|
|
|
|
.send-v2__asset-dropdown__asset {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-wrapper {
|
|
|
|
border: 1px solid $alto;
|
|
|
|
border-radius: 4px;
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 100%;
|
2019-04-17 21:15:13 +02:00
|
|
|
|
|
|
|
&--opened {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2050;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-v2__asset-dropdown__asset {
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 100%;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
z-index: 1025;
|
|
|
|
position: relative;
|
|
|
|
height: 54px;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
|
|
|
color: $tundora;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__memo-text-area,
|
|
|
|
&__hex-data {
|
2017-10-06 12:30:45 +02:00
|
|
|
&__input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2018-09-14 01:23:04 +02:00
|
|
|
z-index: 1025;
|
2018-09-13 04:57:35 +02:00
|
|
|
position: relative;
|
2017-10-06 12:30:45 +02:00
|
|
|
height: 54px;
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
2017-10-06 12:30:45 +02:00
|
|
|
border: 1px solid $alto;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
2018-02-13 07:39:15 +01:00
|
|
|
color: $tundora;
|
2017-10-06 12:30:45 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 18:43:12 +02:00
|
|
|
&__amount-max {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 56px;
|
|
|
|
height: 20px;
|
|
|
|
margin-top: 5px;
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
width: 56px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
2020-10-30 19:31:42 +01:00
|
|
|
border: 1px solid #b0d7f2;
|
2019-05-20 18:38:08 +02:00
|
|
|
border-radius: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: #2f9ae0;
|
2021-06-16 17:00:19 +02:00
|
|
|
background: #fff;
|
2019-05-20 18:38:08 +02:00
|
|
|
|
|
|
|
&__disabled {
|
2020-07-15 15:13:40 +02:00
|
|
|
color: #b0d7f2;
|
2019-05-20 18:38:08 +02:00
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + &__button {
|
2020-07-17 20:11:04 +02:00
|
|
|
background-color: $primary-blue;
|
2020-10-30 19:31:42 +01:00
|
|
|
border: 1px solid $primary-blue;
|
2019-05-20 18:38:08 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__amount-max input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2017-10-26 18:43:12 +02:00
|
|
|
}
|
|
|
|
|
2017-10-19 19:53:56 +02:00
|
|
|
&__gas-fee-display {
|
|
|
|
width: 100%;
|
2018-03-09 06:33:36 +01:00
|
|
|
position: relative;
|
2018-03-20 10:17:45 +01:00
|
|
|
|
|
|
|
.currency-display--message {
|
|
|
|
padding: 8px 38px 8px 10px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__sliders-icon-container {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2020-07-17 20:11:04 +02:00
|
|
|
border: 1px solid $primary-blue;
|
2017-10-13 22:19:22 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sliders-icon {
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__memo-text-area {
|
|
|
|
&__input {
|
|
|
|
padding: 6px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-05 17:44:45 +02:00
|
|
|
&__footer {
|
|
|
|
height: 92px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
|
|
|
border-top: 1px solid $alto;
|
2017-10-19 19:53:56 +02:00
|
|
|
background: $white;
|
2017-10-19 23:08:52 +02:00
|
|
|
padding: 0 12px;
|
2018-01-12 01:30:07 +01:00
|
|
|
flex-shrink: 0;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__next-btn,
|
2018-01-12 01:30:07 +01:00
|
|
|
&__cancel-btn {
|
2017-10-05 17:44:45 +02:00
|
|
|
width: 163px;
|
2017-10-24 10:19:00 +02:00
|
|
|
margin: 0 4px;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__customize-gas {
|
2020-07-15 15:13:40 +02:00
|
|
|
border: 1px solid #d8d8d8;
|
2017-10-13 22:19:22 +02:00
|
|
|
border-radius: 4px;
|
2020-07-15 15:13:40 +02:00
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
2017-10-25 10:08:14 +02:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H3;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 52px;
|
|
|
|
border-bottom: 1px solid $alto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2017-10-25 10:08:14 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
margin-left: 19.25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close::after {
|
|
|
|
content: '\00D7';
|
|
|
|
font-size: 1.8em;
|
|
|
|
color: $dusty-gray;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 19.25px;
|
|
|
|
}
|
|
|
|
|
2017-10-25 10:08:14 +02:00
|
|
|
&__content {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__body {
|
|
|
|
display: flex;
|
2017-10-25 10:08:14 +02:00
|
|
|
margin-bottom: 24px;
|
2017-10-13 22:19:22 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex-flow: column;
|
2017-10-25 10:08:14 +02:00
|
|
|
flex: 1 1 auto;
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__footer {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H3;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 75px;
|
|
|
|
border-top: 1px solid $alto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2017-10-22 22:14:03 +02:00
|
|
|
position: relative;
|
2017-10-25 10:08:14 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-right: 21.25px;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__revert,
|
|
|
|
&__cancel,
|
|
|
|
&__save,
|
|
|
|
&__save__error {
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-04-10 11:51:44 +02:00
|
|
|
padding: 0 3px;
|
2017-10-13 22:19:22 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__revert {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
color: $silver-chalice;
|
|
|
|
margin-left: 21.25px;
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__cancel,
|
|
|
|
&__save,
|
|
|
|
&__save__error {
|
2017-10-13 22:19:22 +02:00
|
|
|
width: 85.74px;
|
2018-03-26 07:19:42 +02:00
|
|
|
min-width: initial;
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
2017-10-22 22:14:03 +02:00
|
|
|
|
|
|
|
&__save__error {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__error-message {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-10-22 22:14:03 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-10-01 16:07:23 +02:00
|
|
|
top: -18px;
|
|
|
|
right: 0;
|
2017-10-22 22:14:03 +02:00
|
|
|
color: $red;
|
2018-10-01 16:07:23 +02:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2017-10-22 22:14:03 +02:00
|
|
|
}
|
2018-08-28 05:58:40 +02:00
|
|
|
|
|
|
|
&__cancel {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__gas-modal-card {
|
|
|
|
width: 360px;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 26px;
|
|
|
|
color: $tundora;
|
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 38px;
|
|
|
|
width: 314px;
|
|
|
|
color: $tundora;
|
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize-gas-input-wrapper {
|
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.customize-gas-input {
|
|
|
|
height: 54px;
|
|
|
|
width: 315px;
|
|
|
|
border: 1px solid $geyser;
|
|
|
|
background-color: $white;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-arrows {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
width: 32px;
|
|
|
|
height: 54px;
|
|
|
|
border-left: 1px solid #dadada;
|
|
|
|
color: $tundora;
|
2020-07-15 15:13:40 +02:00
|
|
|
right: 0;
|
2018-09-15 21:22:10 +02:00
|
|
|
padding: 0;
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-09-15 21:22:10 +02:00
|
|
|
.gas-tooltip-input-arrow-wrapper {
|
|
|
|
align-items: center;
|
|
|
|
align-self: stretch;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
input[type="number"]::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="number"]:hover::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.advanced-gas-options-btn {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
color: #2f9ae0;
|
|
|
|
cursor: pointer;
|
2019-05-20 18:38:08 +02:00
|
|
|
margin-top: 5px;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
2018-03-09 06:33:36 +01:00
|
|
|
|
|
|
|
.sliders-icon-container {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2018-03-09 06:33:36 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2020-07-17 20:11:04 +02:00
|
|
|
border: 1px solid $primary-blue;
|
2018-03-09 06:33:36 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: $white;
|
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
.gas-fee-reset {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #fff;
|
|
|
|
position: absolute;
|
|
|
|
right: 12px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #2f9ae0;
|
|
|
|
}
|
|
|
|
|
2018-03-09 06:33:36 +01:00
|
|
|
.sliders-icon {
|
2020-07-17 20:11:04 +02:00
|
|
|
color: $primary-blue;
|
2018-07-16 22:51:02 +02:00
|
|
|
}
|