Skip to content
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
2 changes: 2 additions & 0 deletions src/components/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const styles = makeStyles({
function NavBar() {
const classes = styles()
return (
<div className='navbar'>
<Toolbar position="sticky" color="rgba(0, 0, 0, 0.87)" className={classes.bar}>
<img src={logo} className={classes.logo}/>
<img src={logoMobile} className={classes.logoMobile}/>
Expand All @@ -60,6 +61,7 @@ function NavBar() {
</Typography>
<CustomBtn txt="Trial Our Product"/>
</Toolbar>
</div>
)
}

Expand Down
6 changes: 6 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #5d4257;
background-image: linear-gradient(315deg, #5d4257 0%, #a5c7b7 74%);
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.classes.bar{
background-color: #f2cf43;
background-image: linear-gradient(315deg, #f2cf43 0%, #19a186 74%);
}