2020-08-11 18:07:47 +02:00
|
|
|
.export-private-key-modal {
|
|
|
|
&__body-title {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H4;
|
|
|
|
|
2020-08-11 18:07:47 +02:00
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__divider {
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
margin: 19px 0 8px 0;
|
2022-01-06 18:35:49 +01:00
|
|
|
background-color: var(--alto);
|
2020-08-11 18:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__account-name {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H4;
|
|
|
|
|
2020-08-11 18:07:47 +02:00
|
|
|
margin-top: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password-label,
|
|
|
|
&__password--error {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--scorpion);
|
2020-08-11 18:07:47 +02:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password--error {
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--crimson);
|
2020-08-11 18:07:47 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password-input {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2020-08-11 18:07:47 +02:00
|
|
|
padding: 10px 0 13px 17px;
|
|
|
|
width: 291px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password::-webkit-input-placeholder {
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--dusty-gray);
|
2020-08-11 18:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__password--warning {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2020-08-11 18:07:47 +02:00
|
|
|
border-radius: 8px;
|
|
|
|
background-color: #fff6f6;
|
|
|
|
font-weight: 500;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--crimson);
|
2020-08-11 18:07:47 +02:00
|
|
|
width: 292px;
|
|
|
|
padding: 9px 15px;
|
|
|
|
margin-top: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password-display-wrapper {
|
|
|
|
height: 80px;
|
|
|
|
width: 291px;
|
2022-01-06 18:35:49 +01:00
|
|
|
border: 1px solid var(--silver);
|
2020-08-11 18:07:47 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__password-display-textarea {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--crimson);
|
2020-08-11 18:07:47 +02:00
|
|
|
border: none;
|
|
|
|
height: 75px;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
resize: none;
|
|
|
|
padding: 9px 13px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
2021-07-14 04:06:12 +02:00
|
|
|
width: 100%;
|
|
|
|
padding: 0 25px;
|
2020-08-11 18:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
margin-top: 17px;
|
|
|
|
width: 141px;
|
|
|
|
min-width: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button--cancel {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .ellip-address-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-01-06 18:35:49 +01:00
|
|
|
border: 1px solid var(--alto);
|
2020-08-11 18:07:47 +02:00
|
|
|
padding: 5px 10px;
|
|
|
|
margin-top: 7px;
|
|
|
|
width: 286px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|