Skip to content

Commit

Permalink
fix(components): fix unit text wrap-issue
Browse files Browse the repository at this point in the history
fix unit text wrap-issue

close RQA3588
  • Loading branch information
koji committed Nov 21, 2024
1 parent f764319 commit 3bdc985
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 3bdc985

Please sign in to comment.