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
2 changes: 1 addition & 1 deletion src/app/mydashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function MyDashboardPage() {
<Header />

{/* 페이지 콘텐츠 */}
<main className="mobile-wide:p-16 tablet-wide:p-24 p-40">
<main className="mobile-wide:mt-76 mobile-wide:p-16 tablet-wide:mt-76 tablet-wide:p-24 mt-60 p-40">
<MyDashboardGrid />

{/* 초대받은 대시보드 섹션 */}
Expand Down
4 changes: 2 additions & 2 deletions src/app/mypage/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default function MypageLayout({
<>
<Sidebar />
{/* Sidebar의 반응형이 적용 될 경우 변경 예정 */}
<div className="pl-300 mobile-wide:pl-67 tablet-wide:pl-160">
<div className="mobile-wide:pl-67 tablet-wide:pl-160 pl-300">
<Header />
<main className="BG-gray h-screen">{children}</main>
<main className="BG-gray mt-57 h-screen">{children}</main>
</div>
</>
)
Expand Down