-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e9a164
commit c7a61ce
Showing
10 changed files
with
596 additions
and
50 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.Navbar { | ||
display: flex; | ||
padding: 20px 34px; | ||
margin-inline: 20px; | ||
justify-content: space-between; | ||
align-items: center; | ||
border-radius: 100px; | ||
border: 1px solid var(--Grey-15, #262626); | ||
background: var(--Grey-11, #1C1C1C); | ||
|
||
&-buttons { | ||
display: flex; | ||
gap: 20px; | ||
} | ||
|
||
&-title { | ||
font-size: 1.5rem !important; | ||
font-weight: 700 !important; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Box, Button, Typography } from "@mui/material"; | ||
import { ReactElement } from "react"; | ||
import "./Navbar.scss"; | ||
|
||
const Navbar = (): ReactElement => { | ||
return ( | ||
<nav className="Navbar"> | ||
<Typography className="Navbar-title">LuckyJinx</Typography> | ||
<Box className="Navbar-buttons"> | ||
<Button color="secondary" variant="contained"> | ||
Sign Up | ||
</Button> | ||
<Button color="primary" variant="contained"> | ||
Login | ||
</Button> | ||
</Box> | ||
</nav> | ||
); | ||
}; | ||
|
||
export default Navbar; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters