From 3fd3015b6cb8b5518f37a34904bee2c4223027b9 Mon Sep 17 00:00:00 2001 From: lydiacho <81505421+lydiacho@users.noreply.github.com> Date: Sat, 24 Aug 2024 21:59:09 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Fix]=20=EB=A7=8C=EC=A1=B1=EB=8F=84=20?= =?UTF-8?q?=EC=A1=B0=EC=82=AC=20=EC=A0=9C=EC=B6=9C=201=ED=9A=8C=EB=A7=8C?= =?UTF-8?q?=20=ED=97=88=EC=9A=A9=20=20(#428)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * remove: 만족도 조사 재제출 타이머 삭제 * chore: 테스트용 주석 삭제 --- src/views/CompletePage/components/Survey.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/views/CompletePage/components/Survey.tsx b/src/views/CompletePage/components/Survey.tsx index 543293cc..22d159e8 100644 --- a/src/views/CompletePage/components/Survey.tsx +++ b/src/views/CompletePage/components/Survey.tsx @@ -20,9 +20,6 @@ const Survey = () => { setTimeout(() => { setPoint('CHANGED'); }, 200); - setTimeout(() => { - setPoint(-1); - }, 2200); }; const { mutate } = useMutateSatisfaction({ onSuccess: handleSatisfaction }); From 8577a94170fa8f63018df6b0396b75cbd524e1d0 Mon Sep 17 00:00:00 2001 From: lydiacho <81505421+lydiacho@users.noreply.github.com> Date: Sat, 24 Aug 2024 22:00:05 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Fix]=20=ED=85=8D=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=ED=95=84=EB=93=9C=20=EB=AA=A8=EB=B0=94=EC=9D=BC=EB=B7=B0=20?= =?UTF-8?q?=ED=8F=B0=ED=8A=B8=20=EC=82=AC=EC=9D=B4=EC=A6=88=2014->16px=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20=20(#429)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 텍스트필드 모바일뷰 폰트사이즈 16px로 수정 * fix: 불필요한 스타일링 삭제 --- .../Input/components/InputLine/index.tsx | 4 ++-- .../Input/components/InputLine/style.css.ts | 24 ++++++------------- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/src/common/components/Input/components/InputLine/index.tsx b/src/common/components/Input/components/InputLine/index.tsx index a9c86bd1..4efb873c 100644 --- a/src/common/components/Input/components/InputLine/index.tsx +++ b/src/common/components/Input/components/InputLine/index.tsx @@ -3,7 +3,7 @@ import { useFormContext } from 'react-hook-form'; import { DeviceTypeContext } from '@store/deviceTypeContext'; -import { inputFontVar, inputLineVar, inputVar } from './style.css'; +import { inputFont, inputLineVar, inputVar } from './style.css'; import { formatBirthdate } from './utils/formatBirthdate'; import { formatPhoneNumber } from './utils/formatPhoneNumber'; import { TextBoxProps } from '../../types'; @@ -50,7 +50,7 @@ const InputLine = ({ [ - { - color: theme.color.baseText, - ...font, +export const inputFont = style({ + color: theme.color.baseText, + ...theme.font.BODY_2_16_R, - '::placeholder': { - color: theme.color.placeholder, - ...font, - }, - }, - ], -); + '::placeholder': { + color: theme.color.placeholder, + }, +});