colocate account modal styles with their components (#9150)
This one gets a bit more complicated because the styles were interwoven and needed to be untangled to be moved. Essentially, though, the goal is to put the styles where they make the most sense and colocate them with their components.feature/default_network_editable
parent
6ba9e65712
commit
01f69d7e7a
@ -0,0 +1,37 @@ |
|||||||
|
.account-details-modal { |
||||||
|
&__name { |
||||||
|
margin-top: 9px; |
||||||
|
font-size: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
&__button { |
||||||
|
margin-top: 17px; |
||||||
|
padding: 10px 22px; |
||||||
|
width: 286px; |
||||||
|
} |
||||||
|
|
||||||
|
&__divider { |
||||||
|
width: 100%; |
||||||
|
height: 1px; |
||||||
|
margin: 19px 0 8px 0; |
||||||
|
background-color: $alto; |
||||||
|
} |
||||||
|
|
||||||
|
& .qr-header { |
||||||
|
margin-top: 9px; |
||||||
|
font-size: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
& .qr-wrapper { |
||||||
|
margin-top: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
& .ellip-address-wrapper { |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
border: 1px solid $alto; |
||||||
|
padding: 5px 10px; |
||||||
|
margin-top: 7px; |
||||||
|
width: 286px; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,50 @@ |
|||||||
|
// 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; |
||||||
|
} |
||||||
|
|
||||||
|
&__text { |
||||||
|
margin-top: 2px; |
||||||
|
font-size: 14px; |
||||||
|
line-height: 18px; |
||||||
|
} |
||||||
|
|
||||||
|
&__close { |
||||||
|
font-size: 40px; |
||||||
|
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; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,106 @@ |
|||||||
|
.export-private-key-modal { |
||||||
|
&__body-title { |
||||||
|
margin-top: 16px; |
||||||
|
margin-bottom: 16px; |
||||||
|
font-size: 18px; |
||||||
|
} |
||||||
|
|
||||||
|
&__divider { |
||||||
|
width: 100%; |
||||||
|
height: 1px; |
||||||
|
margin: 19px 0 8px 0; |
||||||
|
background-color: $alto; |
||||||
|
} |
||||||
|
|
||||||
|
&__account-name { |
||||||
|
margin-top: 9px; |
||||||
|
font-size: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
&__password { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
|
||||||
|
&__password-label, |
||||||
|
&__password--error { |
||||||
|
color: $scorpion; |
||||||
|
font-size: 14px; |
||||||
|
line-height: 18px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
&__password--error { |
||||||
|
color: $crimson; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
&__password-input { |
||||||
|
padding: 10px 0 13px 17px; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 21px; |
||||||
|
width: 291px; |
||||||
|
height: 44px; |
||||||
|
} |
||||||
|
|
||||||
|
&__password::-webkit-input-placeholder { |
||||||
|
color: $dusty-gray; |
||||||
|
} |
||||||
|
|
||||||
|
&__password--warning { |
||||||
|
border-radius: 8px; |
||||||
|
background-color: #fff6f6; |
||||||
|
font-size: 12px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 15px; |
||||||
|
color: $crimson; |
||||||
|
width: 292px; |
||||||
|
padding: 9px 15px; |
||||||
|
margin-top: 18px; |
||||||
|
} |
||||||
|
|
||||||
|
&__password-display-wrapper { |
||||||
|
height: 80px; |
||||||
|
width: 291px; |
||||||
|
border: 1px solid $silver; |
||||||
|
border-radius: 2px; |
||||||
|
} |
||||||
|
|
||||||
|
&__password-display-textarea { |
||||||
|
color: $crimson; |
||||||
|
font-size: 16px; |
||||||
|
line-height: 21px; |
||||||
|
border: none; |
||||||
|
height: 75px; |
||||||
|
width: 100%; |
||||||
|
overflow: hidden; |
||||||
|
resize: none; |
||||||
|
padding: 9px 13px 8px; |
||||||
|
} |
||||||
|
|
||||||
|
&__buttons { |
||||||
|
display: flex; |
||||||
|
flex-direction: row; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
&__button { |
||||||
|
margin-top: 17px; |
||||||
|
width: 141px; |
||||||
|
min-width: initial; |
||||||
|
} |
||||||
|
|
||||||
|
&__button--cancel { |
||||||
|
margin-right: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
& .ellip-address-wrapper { |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
border: 1px solid $alto; |
||||||
|
padding: 5px 10px; |
||||||
|
margin-top: 7px; |
||||||
|
width: 286px; |
||||||
|
} |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue