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