Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FE] 약속 생성 플레이스홀더, 캐러셀 이동 속도 수정 #428

Merged
merged 3 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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