add assemble logo
This commit is contained in:
parent
fca35f89e8
commit
ae210d4afe
|
@ -24,6 +24,7 @@ import InboxIcon from '@material-ui/icons/MoveToInbox';
|
|||
import ProjectIcon from '@material-ui/icons/Work';
|
||||
import { ScaleLoader } from 'react-spinners'
|
||||
import Loading from '../components/base/Loading'
|
||||
import assemble from '../images/assemble.png'
|
||||
|
||||
const About = lazy(() => import('./About.jsx'))
|
||||
const ListProjects = lazy(() => import('./projects/ListProjects'))
|
||||
|
@ -71,6 +72,9 @@ const useStyles = makeStyles(theme => ({
|
|||
appBarBg: {
|
||||
backgroundColor: '#FAFAFA'
|
||||
},
|
||||
assemble:{
|
||||
marginRight: '0.4em'
|
||||
},
|
||||
accountText: {
|
||||
color: '#939BA1'
|
||||
},
|
||||
|
@ -90,6 +94,9 @@ const useStyles = makeStyles(theme => ({
|
|||
flexDirection: 'column',
|
||||
alignItems: 'flex-end'
|
||||
},
|
||||
flex: {
|
||||
display: 'flex'
|
||||
},
|
||||
menuButton: {
|
||||
marginLeft: 12,
|
||||
color: '#000000'
|
||||
|
@ -221,7 +228,10 @@ function PersistentDrawerLeft({ loading, account, children, enableEthereum, loca
|
|||
{!loading && <MenuIcon/>}
|
||||
</IconButton>}
|
||||
{(!isHome || !popoverPosition) && <Typography variant="h6" noWrap>
|
||||
<Link to="/" className={classNames(classes.link, classes.menuText)}>Liquid Funding</Link>
|
||||
<Link to="/" className={classNames(classes.flex, classes.link, classes.menuText)}>
|
||||
<img src={assemble} className={classes.assemble} />
|
||||
assemble
|
||||
</Link>
|
||||
</Typography>}
|
||||
<Typography component={'span'} className={classNames(classes.connect, {[classes.connected]: !!account})} onClick={!account ? enableEthereum : console.log}>
|
||||
{!!account && <div className={classes.connectedText}>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 825 B |
Loading…
Reference in New Issue