From defe2a51664a988b12e8d2e1cf57e466a0a31cea Mon Sep 17 00:00:00 2001 From: nijuy Date: Tue, 26 Mar 2024 14:51:15 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20tailwind=20config=EC=97=90?= =?UTF-8?q?=EC=84=9C=20body1=EC=9D=98=20weight=EB=A5=BC=20400=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', }, ], From a8cac484ab078d8f876392a869c6b80f63385d00 Mon Sep 17 00:00:00 2001 From: nijuy Date: Tue, 26 Mar 2024 14:52:33 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=92=84=20TextAreaField,=20InputField,?= =?UTF-8?q?=20RecommendButton=EC=9D=98=20=EA=B8=80=EC=94=A8=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=EC=9D=84=20body1=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EA=B5=90=EC=B2=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Explore/atoms/RecommendButton.tsx | 2 +- src/components/Register/atoms/TextareaField.tsx | 2 +- src/components/common/InputField.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 (