Skip to content

Commit

Permalink
fix(components): fix unit text wrap-issue (#16943)
Browse files Browse the repository at this point in the history
* fix(components): fix unit text wrap-issue
  • Loading branch information
koji authored Nov 21, 2024
1 parent f764319 commit eff74bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/src/atoms/InputField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,13 @@ export const InputField = React.forwardRef<HTMLInputElement, InputFieldProps>(
color: ${props.disabled ? COLORS.grey40 : COLORS.grey50};
font: ${TYPOGRAPHY.bodyTextRegular};
text-align: ${TYPOGRAPHY.textAlignRight};
white-space: ${NO_WRAP};
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
color: ${props.disabled ? COLORS.grey40 : COLORS.grey50};
font-size: ${TYPOGRAPHY.fontSize22};
font-weight: ${TYPOGRAPHY.fontWeightRegular};
line-height: ${TYPOGRAPHY.lineHeight28};
justify-content: ${textAlign};
white-space: ${NO_WRAP};
}
`

Expand Down

0 comments on commit eff74bc

Please sign in to comment.