Skip to content
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
4 changes: 2 additions & 2 deletions src/app/(crew)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<div className="min-h-screen">
<div className="min-h-screen bg-gray-50">
<Header />
<div className="flex flex-col items-center bg-gray-50">
<div className="flex min-h-[calc(100vh-50px)] flex-col items-center bg-gray-50">
<main className="container flex max-w-pc flex-1 flex-col md:shadow-bg">{children}</main>
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/components/common/crew-list/crew-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ export default function CrewCard({
</span>
</div>
<span className="text-sm font-semibold text-blue-600">
{`ν˜„μž¬ ${totalGatheringCount}개의 약속이 κ°œμ„€λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€.`}
{inWhere === 'main-crew'
? `ν˜„μž¬ ${totalGatheringCount}개의 약속이 κ°œμ„€λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€.`
: `총 ${totalGatheringCount}개의 약속이 λ§Œλ“€μ–΄μ‘Œμ–΄μš”!`}
</span>
</div>
<div className="flex w-full gap-8 md:pt-[31px]">
Expand Down
Loading