Skip to content

Commit

Permalink
fix: resolve text css conflict by explicitly setting font size
Browse files Browse the repository at this point in the history
  • Loading branch information
keemsebin committed Dec 4, 2024
1 parent a5a8f3b commit a38ff49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/common/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { forwardRef } from 'react';
import { Props } from './Input.types';

import { Icon } from '../Icon';
import { Caption } from '../Typography';
import { Body4, Caption } from '../Typography';

export const Input = forwardRef<HTMLInputElement, Props>(
({ value, onClickReset, isValid, errorMessage, ...props }, ref) => {
Expand All @@ -29,9 +29,9 @@ export const Input = forwardRef<HTMLInputElement, Props>(
)}
</div>
{helperMessage && (
<Caption className="text-primary mt-1">
<Body4 className="text-[14px] text-primary mt-1">
{errorMessage || '유투브 링크 혹은 지도 링크만 가능합니다.'}
</Caption>
</Body4>
)}
</div>
);
Expand Down

0 comments on commit a38ff49

Please sign in to comment.