From 6029a19137d4e1b2b1a5d1fec0513b6a707e96f2 Mon Sep 17 00:00:00 2001 From: Gustavo Nogueira <83383362+Gugahnstn@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:38:38 -0300 Subject: [PATCH] Update style.ts (#17) --- src/components/CardResult/style.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/CardResult/style.ts b/src/components/CardResult/style.ts index 418459c..f15d85b 100644 --- a/src/components/CardResult/style.ts +++ b/src/components/CardResult/style.ts @@ -43,7 +43,6 @@ export const CardTitle = styled.h1` export const CardPhrase = styled.p` ${({ theme }) => css` - font-size: ${theme.font.sizes.text_lg}; color: ${theme.colors.result}; text-align: center; font-weight: 700; @@ -51,7 +50,7 @@ export const CardPhrase = styled.p` ::after { content: attr(data-text); - font-size: calc(1.5rem - 0.1rem * (attr(data-text) - 10)); + font-size: calc(1rem - 0.1rem * (attr(data-text) - 10)); } `} `;