mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
53 lines
782 B
SCSS
53 lines
782 B
SCSS
.create-password {
|
|
&__weak {
|
|
color: var(--color-error-default);
|
|
}
|
|
|
|
&__average {
|
|
color: var(--color-warning-alternative);
|
|
}
|
|
|
|
&__strong {
|
|
color: var(--color-success-alternative);
|
|
}
|
|
|
|
&__wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
max-width: 600px;
|
|
max-height: 750px;
|
|
}
|
|
|
|
&__link-text {
|
|
color: var(--color-primary-default);
|
|
}
|
|
|
|
&__form {
|
|
padding: 0 24px;
|
|
|
|
&--password-button {
|
|
background-color: transparent;
|
|
}
|
|
|
|
&--submit-button {
|
|
padding: 20px;
|
|
}
|
|
|
|
&--checkmark {
|
|
i {
|
|
color: var(--color-success-default);
|
|
}
|
|
}
|
|
|
|
&__terms-label {
|
|
display: flex;
|
|
}
|
|
|
|
.form-field__input {
|
|
height: 50px;
|
|
}
|
|
}
|
|
}
|