Skip to content

Commit

Permalink
Reviewed and made required changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joisemp committed Apr 4, 2024
1 parent 76ef41c commit 16ea7e7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 4 additions & 3 deletions Designs/create_password/asset/style.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.container .card {
margin: 0 auto;
margin: 3rem auto;
max-width: 400px;
background-color: #b7b4b4;
background-color: #f7f7f7;
padding: 1rem;
}
.container .card h2 {
margin-top: 19px;
text-align: center;
font-weight: 700;
}
Expand All @@ -16,7 +17,7 @@
}
.container .card .reset-password .btn {
width: 100%;
border-radius: 29px;
border-radius: 50px;
}
.container .card .form-label {
font-weight: 600;
Expand Down
11 changes: 8 additions & 3 deletions Designs/create_password/asset/style.scss
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
.container{

.card{
margin:0 auto;
margin: 3rem auto;
max-width: 400px;
background-color: #b7b4b4;
background-color: #f7f7f7;
padding:1rem;

h2{
margin-top: 19px;
text-align: center;
font-weight: 700;
}

p{
text-align: center;
}

.form-label{
font-weight: 400;
}

.reset-password{
.btn{
width: 100%;
border-radius: 29px;
border-radius: 50px;
}
}

.form-label{
font-weight: 600;
}
Expand Down
2 changes: 1 addition & 1 deletion Designs/create_password/create_password.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="container">
<div class="card">
<h2>Create Password</h2>
<p>create a new password.Make sure to make it complex as possible to make it secure</p>
<p>Create a new password. Make sure to make it complex as possible to make it secure.</p>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label" id="font">New Password</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="">
Expand Down

0 comments on commit 16ea7e7

Please sign in to comment.