2020-08-11 18:07:47 +02:00
|
|
|
// Account Modal Container
|
|
|
|
.account-modal {
|
|
|
|
&__container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
padding: 5px 0 31px 0;
|
|
|
|
border: 1px solid $silver;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__back {
|
|
|
|
color: $dusty-gray;
|
|
|
|
position: absolute;
|
|
|
|
top: 13px;
|
|
|
|
left: 17px;
|
|
|
|
cursor: pointer;
|
2020-08-11 18:17:50 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-08-11 18:07:47 +02:00
|
|
|
}
|
|
|
|
|
2020-08-11 18:17:50 +02:00
|
|
|
&__back-text {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2020-08-11 18:17:50 +02:00
|
|
|
padding-left: 3px;
|
2020-08-11 18:07:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__close {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H1;
|
|
|
|
|
2020-08-11 18:07:47 +02:00
|
|
|
background-color: transparent;
|
|
|
|
color: $dusty-gray;
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
2021-07-14 04:06:12 +02:00
|
|
|
top: -10px;
|
2020-08-11 18:07:47 +02:00
|
|
|
right: 12px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '\00D7';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& .identicon {
|
|
|
|
position: relative;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
top: -32px;
|
|
|
|
margin-bottom: -32px;
|
|
|
|
}
|
|
|
|
}
|