Skip to content

Commit 7289992

Browse files
committed
Style: 모바일 화면 크기 다시 돌림
1 parent b20b9d8 commit 7289992

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/(blog)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default async function Home() {
55
const posts = await getPosts();
66

77
return (
8-
<div className="space-y-6 sm:space-y-8 2xl:space-y-10 h-full rounded-lg pb-5 py-10">
8+
<div className="space-y-6 sm:space-y-8 2xl:space-y-10 h-full rounded-lg p-1 sm:p-7">
99
{/* 헤더 섹션 */}
1010
<section className="space-y-2 sm:space-y-3 md:space-y-4 ">
1111
<h1 className="text-lg sm:text-xl lg:text-2xl font-bold">

app/(blog)/posts/[...slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default async function PostPage({ params }: PostPageProps) {
4343
const publishPath = post.urlPath.split("/").slice(0, -1).join("/");
4444

4545
return (
46-
<article className="rounded-lg p-0 xl:p-7 max-w-3xl mx-auto">
46+
<article className="rounded-lg p-2 sm:p-7 max-w-3xl mx-auto">
4747
{/* 마크다운 콘텐츠 */}
4848
<div className="min-h-[250px] sm:min-h-[300px]">
4949
<MarkdownRenderer

0 commit comments

Comments
 (0)