Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
fix(home): some partner logos too small
Browse files Browse the repository at this point in the history
  • Loading branch information
Karel Reitsma committed Mar 25, 2020
1 parent eca8b7b commit 404b9bd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/HomeAboutTrompa/HomeAboutTrompa.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export default function HomeAboutTrompa () {
<img src={images.partnerVideodock} alt={t('about.partners.videodock')} />
<img src={images.partnerGoldsmiths} alt={t('about.partners.goldsmiths')} />
<img className={classes.verticalLogo} src={images.partnerRco} alt={t('about.partners.rco')} />
<img className={classes.verticalLogo} src={images.partnerVoctroLabs} alt={t('about.partners.voctroLabs')} />
<img className={classes.smallLogo} src={images.partnerVoctroLabs} alt={t('about.partners.voctroLabs')} />
<img className={classes.verticalLogo} src={images.partnerMdw} alt={t('about.partners.mdw')} />
<img src={images.partnerTuDelft} alt={t('about.partners.tudelft')} />
<img className={classes.smallLogo} src={images.partnerTuDelft} alt={t('about.partners.tudelft')} />
</div>
</section>
</Grid>
Expand Down
4 changes: 4 additions & 0 deletions src/components/HomeAboutTrompa/HomeAboutTrompa.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,8 @@ export default ({ spacing, breakpoints }) => createStyles({
height: 50,
width : 'auto',
},
smallLogo: {
height: '85px !important',
width : 'auto',
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ exports[`<HomeAboutTrompa /> renders and matches snapshot 1`] = `
/>
<img
alt="Voctro Labs"
class="makeStyles-verticalLogo-3"
class="makeStyles-smallLogo-4"
src="voctro_labs.png"
/>
<img
Expand All @@ -62,6 +62,7 @@ exports[`<HomeAboutTrompa /> renders and matches snapshot 1`] = `
/>
<img
alt="Technische Universiteit Delft"
class="makeStyles-smallLogo-4"
src="tu_delft.png"
/>
</div>
Expand Down

0 comments on commit 404b9bd

Please sign in to comment.