From 4a4cb7da2d25ffb3713823621f3486f59866e3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=B4=EB=A6=AC=28=EC=B5=9C=ED=98=84=EC=9B=85=29?= Date: Fri, 25 Oct 2024 10:42:08 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20=EC=95=BD=EC=86=8D=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=20=ED=94=8C=EB=A0=88=EC=9D=B4=EC=8A=A4=ED=99=80=EB=8D=94,=20?= =?UTF-8?q?=EC=BA=90=EB=9F=AC=EC=85=80=20=EC=9D=B4=EB=8F=99=20=EC=86=8D?= =?UTF-8?q?=EB=8F=84=20=EC=88=98=EC=A0=95=20(#428)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * design: height 수정 * chore: 캐러셀 이동 속도 기존 시간 수정 * chore: 플레이스홀더 수정 --- frontend/src/components/ComponentCarousel/index.tsx | 2 +- .../Buttons/BottomFixedButton/BottomFixedButton.styles.ts | 2 +- frontend/src/constants/inputFields.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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); 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; `; 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자리 숫자 입력', };