Skip to content

Commit

Permalink
update font size styling
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed May 10, 2024
1 parent 89077ff commit 95374af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/atoms/InputField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ export const InputField = React.forwardRef<HTMLInputElement, InputFieldProps>(
@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};
Expand Down

0 comments on commit 95374af

Please sign in to comment.