Skip to content

Commit

Permalink
feat: reduce acronym size
Browse files Browse the repository at this point in the history
  • Loading branch information
aswanson-nr committed Jan 6, 2022
1 parent 3e6e81c commit 2bbdcd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PackImg.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const PackImg = ({ className, logoUrl, packName }) => {
css={css`
color: var(--color-brand-400);
font-family: var(--code-font);
font-size: ${packAcronym.length < 4 ? '6rem' : '4rem'};
font-size: ${packAcronym.length < 4 ? '4rem' : '2rem'};
background-image: url(${DEFAULT_IMAGE});
background-repeat: no-repeat;
background-position: center;
Expand Down

0 comments on commit 2bbdcd8

Please sign in to comment.