Skip to content

Commit e96a891

Browse files
committed
design: 하단 언덕 이미지 깨지는 문제 해결
1 parent f04c391 commit e96a891

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/BackgroundBottom.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const BackgroundBottom = () => {
66
return (
77
<BackgroundImageWrapper
88
as="div"
9-
className="fixed bottom-[-40px] left-1/2 z-[-10] h-42 w-full -translate-x-1/2 opacity-70"
9+
className="fixed bottom-[-40px] left-1/2 h-42 w-full -translate-x-1/2 opacity-70"
1010
imageUrl={BgItem}
1111
/>
1212
);

src/pages/LetterBoard/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const LetterBoardPage = () => {
5656

5757
return (
5858
<>
59-
<main className="mt-[-25px] flex grow flex-col px-5 pt-20 pb-10">
59+
<main className="z-1 mt-[-25px] flex grow flex-col px-5 pt-20 pb-10">
6060
<>
6161
<NoticeRollingPaper />
6262
<PageTitle className="mx-auto mt-4">게시판</PageTitle>

src/pages/MyPage/components/MyBoardPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const MyBoardPage = () => {
3939
}
4040
return (
4141
<>
42-
<main className={twMerge('flex grow flex-col px-5 pt-20 pb-10')}>
42+
<main className={twMerge('z-1 flex grow flex-col px-5 pt-20 pb-10')}>
4343
<PageTitle className="mx-auto mb-11">내가 올린 게시물</PageTitle>
4444
{isLoading ? (
4545
<p>loading</p>

src/pages/RollingPaper/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const RollingPaperPage = () => {
8686
/>
8787
)}
8888
<Header />
89-
<main className="flex grow flex-col items-center px-5 pt-20 pb-12">
89+
<main className="z-1 flex grow flex-col items-center px-5 pt-20 pb-12">
9090
<PageTitle className="mb-18 max-w-73 text-center">{title}</PageTitle>
9191
<p className="body-sb text-gray-60 mb-2 w-full">등록된 편지 {totalComments}</p>
9292
<section className="w-full">

0 commit comments

Comments
 (0)