Skip to content

Commit

Permalink
fix(Layout): public header img
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Feb 3, 2020
1 parent 4799d32 commit 0797150
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ import LoginOrCreate from './LoginOrCreate'
import media from 'services/ResponsiveService'
import styled from 'styled-components'

const BlockchainLogoImage = styled(Image)`
width: 200px;
display: block;
${media.tablet`
width: 160px;
`}
`
const VersionWrapper = styled.div`
margin-top: 4px;
`
Expand All @@ -33,7 +40,7 @@ const Header = () => {
<NavbarBrand>
<PublicBrand>
<Link href='https://www.blockchain.com'>
<Image name='blockchain-logo' height='20px' />
<BlockchainLogoImage name='blockchain-logo' height='20px' />
</Link>
<VersionWrapper>
<Link
Expand Down

0 comments on commit 0797150

Please sign in to comment.