Skip to content

Commit

Permalink
Merge pull request #174 from yourssu/hotfix
Browse files Browse the repository at this point in the history
🐛 TextareaField classname 수정 (font-body1 -> text-body1)
  • Loading branch information
nijuy authored Mar 26, 2024
2 parents 45cdde2 + 0140db8 commit 1b84fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Register/atoms/TextareaField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ interface TextareaFieldProps extends React.TextareaHTMLAttributes<HTMLTextAreaEl

const TextareaField = ({ height = 127, ...props }: TextareaFieldProps) => {
const defaultStyle =
'p-4 bg-white rounded-xl text-pink placeholder-gray font-body1 resize-none focus:outline-none focus:shadow-inputField'
'p-4 bg-white rounded-xl text-pink placeholder-gray text-body1 resize-none focus:outline-none focus:shadow-inputField'
const shadowStyle = !props.value && 'shadow-inputField'

return (
Expand Down

0 comments on commit 1b84fe2

Please sign in to comment.