-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcorner 16 reset password page #103
Conversation
96e8447
to
75fb3e9
Compare
395f1d9
to
59e1ba9
Compare
@marcinkrzeminski Can you please review this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mgbelegu this one is approved but, but please merge the changes from first. #101 (review)
assets/scss/pages/auth-page.scss
Outdated
.c-forgot-password-page { | ||
.page-title { | ||
color: $color-black; | ||
font-family: $font-semi-bold; | ||
font-size: 2rem; | ||
font-style: normal; | ||
font-weight: 600; | ||
line-height: 2.5rem; | ||
} | ||
} | ||
|
||
.c-forgot-password-container { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1.5rem; | ||
|
||
@include bp(medium) { | ||
gap: 3rem; | ||
} | ||
} | ||
|
||
.c-forgot-password-intro { | ||
max-width: 48.875rem; | ||
margin: 0; | ||
|
||
color: $color-neutrals-500; | ||
font-family: $font-regular; | ||
font-size: 1.125rem; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 1.33; | ||
} | ||
|
||
.c-forgot-password-form { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1.5rem; | ||
|
||
.c-form__text-input { | ||
width: 100%; | ||
|
||
@include bp(medium) { | ||
max-width: 20rem; | ||
} | ||
} | ||
|
||
.c-button { | ||
@include bp(medium) { | ||
width: fit-content; | ||
} | ||
} | ||
|
||
br { | ||
display: none; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mgbelegu move all of that to a separate component please. I suggest p-forgot-password
as the root class name.
162fe92
to
390eda7
Compare
No description provided.