1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/pages/onboarding-flow/create-password/index.scss

53 lines
782 B
SCSS
Raw Normal View History

.create-password {
2022-03-07 16:35:03 +01:00
&__weak {
2022-03-19 01:43:33 +01:00
color: var(--color-error-default);
2022-03-07 16:35:03 +01:00
}
&__average {
2022-03-19 01:43:33 +01:00
color: var(--color-warning-alternative);
2022-03-07 16:35:03 +01:00
}
&__strong {
2022-03-19 01:43:33 +01:00
color: var(--color-success-alternative);
2022-03-07 16:35:03 +01:00
}
&__wrapper {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
max-width: 600px;
max-height: 750px;
}
&__link-text {
2022-03-19 01:43:33 +01:00
color: var(--color-primary-default);
}
&__form {
padding: 0 24px;
&--password-button {
background-color: transparent;
}
&--submit-button {
padding: 20px;
}
&--checkmark {
i {
2022-03-19 01:43:33 +01:00
color: var(--color-success-default);
}
}
&__terms-label {
display: flex;
}
.form-field__input {
height: 50px;
}
}
}