1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 04:46:10 +01:00
metamask-extension/ui/pages/onboarding-flow/import-srp/index.scss
Alex Donesky 398ea62029
Add Import Secret Recovery Phrase View (#12289)
* Add import secret recovery phrase to onboarding flow
2021-10-13 12:41:24 -05:00

79 lines
1.2 KiB
SCSS

.import-srp {
width: 625px;
&__header {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin: 20px auto;
max-width: 500px;
a {
color: $Blue-500;
&:hover {
cursor: pointer;
color: $Blue-300;
}
}
}
&__actions {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: left;
max-width: 400px;
margin: auto;
&--link {
@include H6;
margin-bottom: 12px;
}
}
}
.srp-text-area {
position: relative;
height: 100px;
width: 325px;
margin: 12px 0 42px 0;
&__textarea {
@include Paragraph;
border: 1px solid #cdcdcd;
border-radius: 10px;
background-color: #fff;
padding: 12px 24px 12px 12px;
resize: none;
width: 100%;
height: 100%;
&--blur {
color: transparent;
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
&--error {
border: 1px solid $error-1;
}
&__error-message {
@include H7;
color: $error-1;
}
}
button {
background-color: transparent;
position: absolute;
right: 0;
top: 5px;
}
}