Skip to content

Commit

Permalink
Users should be presented with a reset password link
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadowacu1 committed Jul 11, 2024
1 parent 0ec3fca commit e8014f5
Show file tree
Hide file tree
Showing 12 changed files with 893 additions and 868 deletions.
Binary file added public/assets/images/resetPassword.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
158 changes: 79 additions & 79 deletions src/assets/styles/LandingPage.scss
Original file line number Diff line number Diff line change
@@ -1,80 +1,80 @@
.landing-container {
padding: 3rem 2rem 4rem 5rem;

.loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.error-message {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: $black-3;
font-size: 1.8rem;
background-color: $primary-color-light;
border: 1px solid $primary-color-dark;
border-radius: 0.5rem;
padding: 2rem;
}
.head {
display: flex;
justify-content: space-between;
align-items: center;
h1 {
font-size: 3.6rem;
}
}

.product-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
gap: 1.7rem;
}
}

.not-found{
display: flex;
align-items: center;
flex-direction: column;

.not-found-img img{
width: 40vw;
}
.not-found-text{
font-family: $text-family;
font-weight: 700;
font-size: 1.2rem;
margin-top: 1rem;
margin-bottom: 2rem;
text-align: center;
line-height: 1.5;
letter-spacing: 0.05em;
color: $text2-color;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
.btn-link{
border: none;
background-color: $primary-color;
padding: 1rem 4rem;
text-decoration: none;
color: $white-color;
font-family: $text-family;
font-weight: 700;
font-size: 1.2rem;
border-radius: 2rem;
cursor: pointer;
}

.btn-link:hover{
background-color: $white-color;
color: $primary-color;
border: 1px solid $border-color;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
transition: all 0.3s ease-in-out;
}
.landing-container {
padding: 3rem 2rem 4rem 5rem;

.loader {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.error-message {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: $black-3;
font-size: 1.8rem;
background-color: $primary-color-light;
border: 1px solid $primary-color-dark;
border-radius: 0.5rem;
padding: 2rem;
}
.head {
display: flex;
justify-content: space-between;
align-items: center;
h1 {
font-size: 3.6rem;
}
}

.product-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
gap: 1.7rem;
}
}

.not-found{
display: flex;
align-items: center;
flex-direction: column;

.not-found-img img{
width: 40vw;
}
.not-found-text{
font-family: $text-family;
font-weight: 700;
font-size: 1.2rem;
margin-top: 1rem;
margin-bottom: 2rem;
text-align: center;
line-height: 1.5;
letter-spacing: 0.05em;
color: $text2-color;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
.btn-link{
border: none;
background-color: $primary-color;
padding: 1rem 4rem;
text-decoration: none;
color: $white-color;
font-family: $text-family;
font-weight: 700;
font-size: 1.2rem;
border-radius: 2rem;
cursor: pointer;
}

.btn-link:hover{
background-color: $white-color;
color: $primary-color;
border: 1px solid $border-color;
box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
transition: all 0.3s ease-in-out;
}
}
27 changes: 0 additions & 27 deletions src/assets/styles/colors.scss

This file was deleted.

Loading

0 comments on commit e8014f5

Please sign in to comment.