From 95374afa41dda7b548632d80fec9988a943f6eef Mon Sep 17 00:00:00 2001 From: koji Date: Fri, 10 May 2024 00:59:47 -0400 Subject: [PATCH] update font size styling --- app/src/atoms/InputField/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/atoms/InputField/index.tsx b/app/src/atoms/InputField/index.tsx index aa59d6f8b63..5471c322d96 100644 --- a/app/src/atoms/InputField/index.tsx +++ b/app/src/atoms/InputField/index.tsx @@ -159,7 +159,9 @@ export const InputField = React.forwardRef( @media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} { height: ${size === 'small' ? '4.25rem' : '5rem'}; - font-size: ${TYPOGRAPHY.fontSize28}; + font-size: ${size === 'small' + ? TYPOGRAPHY.fontSize28 + : TYPOGRAPHY.fontSize38}; padding: ${SPACING.spacing16} ${SPACING.spacing24}; border: 2px ${BORDERS.styleSolid} ${hasError ? COLORS.red50 : COLORS.grey50};