Skip to content

Commit

Permalink
Add new SVG logos
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpalottahigh committed Dec 14, 2019
1 parent a271dce commit d97d6e3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a href="https://fpvtips.com">
<img src="./src/assets/logo-128.png" height="50px" alt="FPVTIPS logo" /></a>
<img src="./src/assets/fpvtips-logo-full.svg" height="60px" alt="FPVTIPS logo" /></a>

[![Netlify Status](https://api.netlify.com/api/v1/badges/0516643c-da3e-4888-a08a-ef84a9acde7b/deploy-status)](https://app.netlify.com/sites/fpvtips/deploys)
[![Lighthouse score: 95/100](https://lighthouse-badge.appspot.com/?score=95)](https://github.com/ebidel/lighthouse-badge)
Expand Down
1 change: 1 addition & 0 deletions src/assets/fpvtips-logo-full.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/fpvtips-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/logo.png
Binary file not shown.
6 changes: 4 additions & 2 deletions src/components/UI/AppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Toolbar from '@material-ui/core/Toolbar'

import Drawer from './Drawer'

import logo from '../../assets/logo.svg'
import logo from '../../assets/fpvtips-logo-full.svg'

const activeStyle = {
borderBottom: '2px solid #0474dc',
Expand All @@ -31,6 +31,8 @@ const styles = {
}

const Brand = styled(Link)`
display: flex;
&:hover {
color: red;
text-decoration: none;
Expand All @@ -57,7 +59,7 @@ function ButtonAppBar(props) {
<Toolbar>
<div className={classes.flex}>
<Brand to="/">
<img src={logo} style={{ height: '48px' }} alt="FPVTIPS" />
<img src={logo} style={{ height: '64px' }} alt="FPVTIPS" />
</Brand>
</div>
<NavLinks>
Expand Down

0 comments on commit d97d6e3

Please sign in to comment.