Skip to content

Commit

Permalink
Update index.css
Browse files Browse the repository at this point in the history
  • Loading branch information
SreejaVeerappan authored Oct 19, 2024
1 parent 86b5a18 commit b7f6d53
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,18 @@ body {

::-webkit-scrollbar-thumb:hover {
background: #03686b;
}
} .login-btn {
background-color: #03565A; /* Use a color from your scrollbar */
color: #fff; /* White text */
padding: 1rem 2rem; /* Adjust padding as needed */
border: none;
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Indicate clickable behavior */
font-family: inherit; /* Inherit font from body */
font-weight: bold; /* Bold text */
transition: background-color 0.2s ease-in-out; /* Smooth hover effect */
}

.login-btn:hover {
background-color: #03686b; /* Darken background on hover */
}

0 comments on commit b7f6d53

Please sign in to comment.