Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Sign Up Button Styles for Consistency #514

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions frontend/src/pages/Home/Hom.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,25 @@ body, html {
margin-top: 16px;
}

#sign-up-btn {
background-color: #18181B; /* Dark background for "Sign Up" button */
color: #ffffff;
padding: 10px 36px !important;
border: none;
cursor: pointer;
border-radius: 5px;
margin-right: 20px;
font-size: 18px !important;
text-decoration: none;
transition: background 0.3s ease;
}

#sign-up-btn:hover {
background-color: white;
color: black;
border: 1px solid black;
}

.btn-default {
background-color: #18181B; /* Dark background for "Sign Up" button */
background-color: #18181B;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Home/Hom.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function Hom() {
Empower yourself with our comprehensive learning platform
</p>
<div className="button-group">
<Link to="/Signup" className="btn-default">
<Link to="/Signup" className="btn-default" id="sign-up-btn">
Sign Up
</Link>
<Link to="/login" className="btn-outline">
Expand Down