diff --git a/src/components/Explore/atoms/RecommendButton.tsx b/src/components/Explore/atoms/RecommendButton.tsx index 1157039..ac1b861 100644 --- a/src/components/Explore/atoms/RecommendButton.tsx +++ b/src/components/Explore/atoms/RecommendButton.tsx @@ -37,7 +37,7 @@ const RecommendButton = ({ recommendOpen, ...props }: RecommendButtonProps) => { { e.stopPropagation() }} diff --git a/src/components/Register/atoms/TextareaField.tsx b/src/components/Register/atoms/TextareaField.tsx index 368d236..f131ebb 100644 --- a/src/components/Register/atoms/TextareaField.tsx +++ b/src/components/Register/atoms/TextareaField.tsx @@ -4,7 +4,7 @@ interface TextareaFieldProps extends React.TextareaHTMLAttributes { const defaultStyle = - 'p-4 bg-white rounded-xl text-pink placeholder-gray font-body2 resize-none focus:outline-none focus:shadow-inputField' + 'p-4 bg-white rounded-xl text-pink placeholder-gray font-body1 resize-none focus:outline-none focus:shadow-inputField' const shadowStyle = !props.value && 'shadow-inputField' return ( diff --git a/src/components/common/InputField.tsx b/src/components/common/InputField.tsx index 590f41a..00c4efc 100644 --- a/src/components/common/InputField.tsx +++ b/src/components/common/InputField.tsx @@ -5,7 +5,7 @@ interface InputFieldProps extends React.InputHTMLAttributes { const InputField = ({ width = 193, height = 48, ...props }: InputFieldProps) => { const defaultStyle = - 'px-4 bg-white rounded-xl flex justify-start items-center focus:outline-none text-pink placeholder-gray text-body2 focus:shadow-inputField' + 'px-4 bg-white rounded-xl flex justify-start items-center focus:outline-none text-pink placeholder-gray text-body1 focus:shadow-inputField' const shadowStyle = !props.value && 'shadow-inputField' return ( diff --git a/tailwind.config.ts b/tailwind.config.ts index 3407ce6..51e3199 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -41,7 +41,7 @@ const config: Config = { body1: [ '16px', { - fontWeight: '600', + fontWeight: '400', lineHeight: '20.8px', }, ],