Skip to content

Commit

Permalink
Fix: replace padding-top with margin for consistent spacing in activa…
Browse files Browse the repository at this point in the history
…tion and password pages
  • Loading branch information
aelassas committed Jan 6, 2025
1 parent 000154c commit 1221f02
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/src/assets/css/activate.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ div.activate {
flex-direction: row;
flex: 1 0 auto;
justify-content: center;
padding-top: 120px;
margin: 120px 0;
transform: translate3d(0, 0, 0);
min-height: 100vh;
}
Expand All @@ -18,7 +18,7 @@ div.resend {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 120px;
margin: 120px 0;
transform: translate3d(0, 0, 0);
flex: 1 0 auto;
padding-bottom: 40px;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/css/forgot-password.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ div.forgot-password {
flex-direction: row;
flex: 1 0 auto;
justify-content: center;
padding-top: 120px;
margin: 120px 0;
transform: translate3d(0, 0, 0);
min-height: 100vh;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/css/reset-password.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ div.reset-password {
align-items: center;
padding-bottom: 40px;

padding-top: 120px;
margin: 120px 0;
transform: translate3d(0, 0, 0);
min-height: 100vh;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/assets/css/signin.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ div.signin {
flex-direction: row;
flex: 1 0 auto;
justify-content: center;
padding-top: 120px;
margin: 120px 0;
transform: translate3d(0, 0, 0);
min-height: 100vh;
}
Expand Down

0 comments on commit 1221f02

Please sign in to comment.