File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default async function Home() {
5
5
const posts = await getPosts ( ) ;
6
6
7
7
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 " >
9
9
{ /* 헤더 섹션 */ }
10
10
< section className = "space-y-2 sm:space-y-3 md:space-y-4 " >
11
11
< h1 className = "text-lg sm:text-xl lg:text-2xl font-bold" >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export default async function PostPage({ params }: PostPageProps) {
43
43
const publishPath = post . urlPath . split ( "/" ) . slice ( 0 , - 1 ) . join ( "/" ) ;
44
44
45
45
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" >
47
47
{ /* 마크다운 콘텐츠 */ }
48
48
< div className = "min-h-[250px] sm:min-h-[300px]" >
49
49
< MarkdownRenderer
You can’t perform that action at this time.
0 commit comments