Skip to content

Commit ea70a69

Browse files
authored
Merge pull request #171 from part3-4team-Taskify/feature/Gnb
[Fix] mypage: 모바일 환경에서 사이드메뉴 가로스크롤 현상 수정
2 parents d45d23f + 9b6f447 commit ea70a69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/mypage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ export default function MyPage() {
4141
dashboardList={dashboards}
4242
onCreateDashboard={() => fetchDashboards()}
4343
/>
44-
<div className="flex flex-col flex-1 bg-[var(--color-gray5)]">
44+
<div className="flex flex-col flex-1 overflow-hidden bg-[var(--color-gray5)]">
4545
<HeaderMyPage variant="mypage" />
46-
<div className="flex flex-col justify-start overflow-auto w-full px-6 mt-6">
46+
<div className="flex flex-col justify-start w-full px-6 mt-6">
4747
{/*돌아가기 버튼*/}
4848
<div className="flex gap-[8px]">
4949
<Image

0 commit comments

Comments
 (0)