Jiseoup/showmycodePublic
EN|KO
  • Code
  • Commits
  • Pull Requests
← Back to list

refactor: widen Files Changed layout

JiseoupJiseoup · May 19, 2026744249b

Files changed2+2 -2

Changed files

+2 -2 · 2

@@ -21,7 +21,7 @@ export default async function CommitDetailPage({ params }: Props) {
const body = bodyLines.join("\n").trim();
return (
- <main className="mx-auto w-full max-w-6xl flex-1 space-y-5 overflow-auto px-6 py-6">
+ <main className="mx-auto w-full max-w-7xl flex-1 space-y-5 overflow-auto px-6 py-6">
<Link
href={`/${lang}/repository/${owner}/${repo}/commits`}
className="text-muted-foreground hover:text-foreground text-xs transition-colors"
@@ -70,7 +70,7 @@ export default async function PullDetailPage({ params, searchParams }: Props) {
return (
<main
- className={`mx-auto w-full ${tab === "files" ? "max-w-6xl" : "max-w-4xl"} flex-1 space-y-5 overflow-auto px-6 py-6`}
+ className={`mx-auto w-full ${tab === "files" ? "max-w-7xl" : "max-w-4xl"} flex-1 space-y-5 overflow-auto px-6 py-6`}
>
{/* Back link. */}
<Link