Skip to content
Merged
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
11 changes: 11 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,16 @@ body {
padding: 20px;
margin-top: 50px;
}
.btn-hover{
border: 2px solid white;
border-radius: 5px;
color:white !important;
margin-right: 9px;
}
.btn-hover:hover {
background-color: white;
color: black !important; /* Change text color on hover if needed */
}



8 changes: 4 additions & 4 deletions src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const LoginButton = () => {
const { loginWithRedirect } = useAuth0();

return (
<Nav.Link className="btn btn-black" onClick={() => loginWithRedirect()}>
<Nav.Link className="btn btn-black btn-hover" onClick={() => loginWithRedirect()}>
Login
</Nav.Link>
);
Expand Down Expand Up @@ -89,9 +89,9 @@ export default function App() {
<Navbar.Toggle aria-controls="basic-navbar-nav" />
<Navbar.Collapse id="basic-navbar-nav">
<Nav className="me-auto">
<Nav.Link href="#home">Home</Nav.Link>
<Nav.Link href="#about">About us</Nav.Link>
<Nav.Link href="#contact">Contact us</Nav.Link>
<Nav.Link className="btn btn-black btn-hover" href="#home">Home</Nav.Link>
<Nav.Link className="btn btn-black btn-hover" href="#about">About us</Nav.Link>
<Nav.Link className="btn btn-black btn-hover" href="#contact">Contact us</Nav.Link>
</Nav>
<UserProfileDropdown />
</Navbar.Collapse>
Expand Down