From 2bbdcd8afe6af00ced046f31d56cb0f99c0ce402 Mon Sep 17 00:00:00 2001 From: aswanson-nr Date: Thu, 6 Jan 2022 11:56:01 -0800 Subject: [PATCH] feat: reduce acronym size --- src/components/PackImg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PackImg.js b/src/components/PackImg.js index 1505e9491..c467cdd5d 100644 --- a/src/components/PackImg.js +++ b/src/components/PackImg.js @@ -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;