Skip to content

Commit

Permalink
Merge pull request #459 from SupratitDatta/back-button-color
Browse files Browse the repository at this point in the history
Fixed back button color in login/signup page
  • Loading branch information
PriyaGhosal authored Oct 11, 2024
2 parents 4843cf3 + 30f6f3f commit 5aa879d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,18 @@ form.sign-in-form {
top: 20px;
left: 20px;
background: #ffffff;
color: #ffffff;
color: #000000;
padding: 10px;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
text-decoration: none;
}

.homeBtn:hover {
background: #232323;
}

.homeBtn:active {
background: #191919;
}

0 comments on commit 5aa879d

Please sign in to comment.