-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(adaptive): adaptive for reset password
- Loading branch information
1 parent
a95f953
commit b37adba
Showing
6 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 26 additions & 1 deletion
27
src/pages/reset-password-confirmation/reset-password-confirmation.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,36 @@ | ||
@import 'assets/styles/abstracts/variables/media-queries'; | ||
|
||
.content { | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 12px; | ||
margin-bottom: 24px; | ||
|
||
@media screen and (max-width: calc($media-desktop-medium - 1px)) { | ||
margin-bottom: 20px; | ||
} | ||
|
||
@media screen and (max-width: $media-tablet-large) { | ||
row-gap: 28px; | ||
margin-bottom: 36px; | ||
} | ||
|
||
> div > label { | ||
@media screen and (max-width: calc($media-desktop-medium - 1px)) { | ||
display: block; | ||
} | ||
} | ||
|
||
&--response { | ||
align-items: center; | ||
margin: 26px 0 58px; | ||
margin: 68px 0 58px; | ||
|
||
@media screen and (max-width: calc($media-desktop-medium - 1px)) { | ||
margin: 44px 0 46px; | ||
} | ||
|
||
@media screen and (max-width: $media-tablet-large) { | ||
margin-bottom: 36px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters