A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/pages/onboarding-flow/import-srp/index.scss

79 lines
1.3 KiB

.import-srp {
width: 625px;
&__header {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin: 20px auto;
max-width: 500px;
a {
color: var(--color-primary-default);
&:hover {
cursor: pointer;
color: var(--color-primary-default);
}
}
}
&__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 var(--color-border-muted);
border-radius: 10px;
background-color: var(--color-background-default);
color: var(--color-text-default);
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 var(--color-error-default);
}
&__error-message {
@include H7;
color: var(--color-error-default);
}
}
button {
background-color: transparent;
position: absolute;
right: 0;
top: 5px;
}
}