mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
54 lines
856 B
SCSS
54 lines
856 B
SCSS
// 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;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__back-text {
|
|
@include H6;
|
|
|
|
padding-left: 3px;
|
|
}
|
|
|
|
&__close {
|
|
@include H1;
|
|
|
|
background-color: transparent;
|
|
color: $dusty-gray;
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: -10px;
|
|
right: 12px;
|
|
|
|
&::after {
|
|
content: '\00D7';
|
|
}
|
|
}
|
|
|
|
& .identicon {
|
|
position: relative;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
top: -32px;
|
|
margin-bottom: -32px;
|
|
}
|
|
}
|