Skip to content
Open
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
12 changes: 6 additions & 6 deletions src/Components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const useStyles = makeStyles(() => ({
mobileMenuButton: {
fontFamily: "Titillium Web, sans-serif",
fontWeight: 700,
size: "26px",
size: "28px",
marginLeft: "38px",
textDecoration: "none",
color: "#fff",
Expand Down Expand Up @@ -190,7 +190,7 @@ export default function Nav() {
flexDirection: "column",
justifyContent: "space-between",
height: "200px",
marginBottom: "95px",
marginBottom: "96px",
}}
>
<NavLink
Expand All @@ -200,9 +200,9 @@ export default function Nav() {
activeStyle={{
fontWeight: "bold",
color: "#3ed1b8",
fontSize: "25px",
fontSize: "26px",
}}
style={{ fontSize: "21px", marginBottom: "15px" }}
style={{ fontSize: "22px", marginBottom: "16px" }}
>
Home
</NavLink>
Expand Down Expand Up @@ -250,7 +250,7 @@ export default function Nav() {
fontWeight: "bold",
color: "#3ed1b8",
}}
style={{ fontSize: "24px" }}
style={{ fontSize: "25px" }}
>
Contact
</NavLink>
Expand All @@ -260,7 +260,7 @@ export default function Nav() {

const femmecubatorLogo = (
<NavLink to="/">
<img src={logoGIF} alt="logo" style={{ height: "100px" }}></img>
<img src={logoGIF} alt="logo" style={{ height: "102px" }}></img>
</NavLink>
);

Expand Down