Skip to content

Commit

Permalink
PER-9491-new-sign-in design changes minor
Browse files Browse the repository at this point in the history
- Changed the margin of the title on the sign in pace (only on mobile view)
- Added padding to the form on the forgot password page
- Added another breakpoint to make the form larger at smaller breakpoints right before it hits tablet
  • Loading branch information
crisnicandrei committed Mar 15, 2024
1 parent 22328de commit 0bbd0dc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/auth/components/auth/auth.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
width: 100%;
align-items: center;
}

@media screen and (max-width: 1300px) and (min-width: 900px) {
width: 40%;
padding-right: 20px;
}
}

.image {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
/* @format */
@import 'fonts';
@import 'mixins';
@import 'variables';

:host {
position: relative;
}

form {
padding: 0;
@include beforeDesktop {
padding: 0px 20px;
}
margin: 0;
}

Expand Down
3 changes: 3 additions & 0 deletions src/app/auth/components/login/login.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
.page-title {
@include pageTitle;
margin-bottom: 175px;
@include beforeDesktop {
margin-bottom: 10%;
}
}

.email-input {
Expand Down

0 comments on commit 0bbd0dc

Please sign in to comment.