Skip to content

Commit

Permalink
🪐 Update application creation page spacing (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClumsyVlad authored Mar 19, 2024
1 parent 03fa501 commit 2d69665
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/app/waves/[waveId]/applications/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ export default async function CreateApplication({
const { waveId } = parseWaveParams(params);

return (
<>
<div className="mb-16 flex items-center gap-4">
<div className="flex flex-col gap-14">
<div className="flex items-center gap-4">
<BackButton href={`/waves/${waveId}`} />
<PageTitle>Apply for the Grant</PageTitle>
</div>

<CreateApplicationForm />
</>
</div>
);
}
4 changes: 2 additions & 2 deletions src/app/waves/[waveId]/applications/create/preview/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export default function PreviewApplication() {
}

return (
<div className="flex w-full flex-col gap-4">
<div className="mb-8 flex items-center justify-between">
<div className="flex flex-col gap-8">
<div className="flex items-center justify-between">
<div className="flex items-center gap-4">
<BackButton href={`/waves/${waveId}/applications/create`} />
<PageTitle>{applicationData.name}</PageTitle>
Expand Down

0 comments on commit 2d69665

Please sign in to comment.