From d2ea2c98249a10038ca1f40bf966a26a9e4c3dfb Mon Sep 17 00:00:00 2001 From: hwinkr Date: Fri, 25 Oct 2024 10:14:43 +0900 Subject: [PATCH 1/3] =?UTF-8?q?design:=20height=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Buttons/BottomFixedButton/BottomFixedButton.styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts b/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts index 664282be4..151928549 100644 --- a/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts +++ b/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts @@ -24,7 +24,7 @@ export const s_bottomFixedButtonContainer = (height = 0) => css` justify-content: center; width: 100%; - height: 6rem; + height: 5.2rem; background-color: transparent; `; From d3d3633a7fc614b22702c0f4ad0ae633749b42cd Mon Sep 17 00:00:00 2001 From: hwinkr Date: Fri, 25 Oct 2024 10:15:11 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=EC=BA=90=EB=9F=AC=EC=85=80=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99=20=EC=86=8D=EB=8F=84=20=EA=B8=B0=EC=A1=B4=20?= =?UTF-8?q?=EC=8B=9C=EA=B0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/ComponentCarousel/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ComponentCarousel/index.tsx b/frontend/src/components/ComponentCarousel/index.tsx index 01129aa60..b631aeca1 100644 --- a/frontend/src/components/ComponentCarousel/index.tsx +++ b/frontend/src/components/ComponentCarousel/index.tsx @@ -14,7 +14,7 @@ interface CarouselProps { interval?: number; } -export default function ComponentCarousel({ slides, interval = 2000 }: CarouselProps) { +export default function ComponentCarousel({ slides, interval = 3000 }: CarouselProps) { const extendedSlides = [...slides.slice(-2), ...slides, ...slides.slice(0, 2)]; const [currentIndex, setCurrentIndex] = useState(2); From 71d0e7d12a383582e126d09af8cf3bbee896de54 Mon Sep 17 00:00:00 2001 From: hwinkr Date: Fri, 25 Oct 2024 10:15:46 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20=ED=94=8C=EB=A0=88=EC=9D=B4?= =?UTF-8?q?=EC=8A=A4=ED=99=80=EB=8D=94=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/constants/inputFields.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/constants/inputFields.ts b/frontend/src/constants/inputFields.ts index 8e1c37bbf..19bfea0c9 100644 --- a/frontend/src/constants/inputFields.ts +++ b/frontend/src/constants/inputFields.ts @@ -32,7 +32,7 @@ export const FIELD_LABELS = { export const FIELD_PLACEHOLDERS = { meetingName: '10자 이내의 약속 이름 입력', - nickname: '5자 이내의 약속 닉네임 입력', + nickname: '5자 이내의 약속 이름 입력', password: '4자리 숫자 입력', };