Skip to content

Commit

Permalink
Update logo to include DC branding
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdean-digicatapult committed Sep 15, 2022
1 parent 86a97a3 commit 9457c6f
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 3 deletions.
172 changes: 172 additions & 0 deletions src/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/MainMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styled from 'styled-components'
import { demos } from '../fixtures/demos'
import Card from './shared/Card'
import Header from './shared/Header'
import dsbdLogo from '../assets/images/logo.png'
import logo from '../assets/images/logo.svg'

const headerHeight = '164px'
const layoutPadding = '50px'
Expand Down Expand Up @@ -39,7 +39,7 @@ export default function MainMenu() {

return (
<>
<Header logo={dsbdLogo} showClose={false} />
<Header logo={logo} showClose={false} />
<CardLayout data-cy={'main-menu-container'} demoCount={demoCount}>
{demos.map((details) => (
<ItemWrap
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Header(props) {
{props.title}
</H1>
) : (
<img src={props.logo} width={'140px'} height={'38px'} />
<img src={props.logo} height={'130px'} />
)}

{props.showClose && (
Expand Down

0 comments on commit 9457c6f

Please sign in to comment.