Skip to content

Commit

Permalink
[FE] 약속 생성 플레이스홀더, 캐러셀 이동 속도 수정 (#428)
Browse files Browse the repository at this point in the history
* design: height 수정

* chore: 캐러셀 이동 속도 기존 시간 수정

* chore: 플레이스홀더 수정
  • Loading branch information
hwinkr authored Oct 25, 2024
1 parent 0111ce1 commit 4a4cb7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/ComponentCarousel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const s_bottomFixedButtonContainer = (height = 0) => css`
justify-content: center;
width: 100%;
height: 6rem;
height: 5.2rem;
background-color: transparent;
`;
2 changes: 1 addition & 1 deletion frontend/src/constants/inputFields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const FIELD_LABELS = {

export const FIELD_PLACEHOLDERS = {
meetingName: '10자 이내의 약속 이름 입력',
nickname: '5자 이내의 약속 닉네임 입력',
nickname: '5자 이내의 약속 이름 입력',
password: '4자리 숫자 입력',
};

Expand Down

0 comments on commit 4a4cb7d

Please sign in to comment.