Skip to content

Commit

Permalink
design: 생성 페이지 background 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Aug 21, 2024
1 parent 124c97f commit ceaab9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const CompleteCreateEventPage = () => {
const homePageUrl = getEventPageUrlByEnvironment(eventId ?? '', 'home');

return (
<MainLayout>
<MainLayout backgroundColor="white">
<TopNav />
<Title
title="행사 개시"
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/CreateEventPage/SetEventNamePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SetEventNamePage = () => {
};

return (
<MainLayout>
<MainLayout backgroundColor="white">
<TopNav>
<Back />
</TopNav>
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/CreateEventPage/SetEventPasswordPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const SetEventPasswordPage = () => {
const {submitPassword, errorMessage, password, handleChange, canSubmit} = useSetEventPasswordPage();

return (
<MainLayout>
<MainLayout backgroundColor="white">
<TopNav>
<Back />
</TopNav>
Expand Down

0 comments on commit ceaab9c

Please sign in to comment.