Skip to content

Commit

Permalink
style: use double quote to provide attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
2paperstar committed Nov 16, 2023
1 parent 15f28f7 commit 55ad170
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/app/[lng]/mypage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ export default async function MyPage({

return (
<>
<div
className={`mt-10 w-full flex h-1500 xl:h-1000 justify-center items-center flex-col xl:flex-row gap-20`}
>
<div className="mt-10 w-full flex h-1500 xl:h-1000 justify-center items-center flex-col xl:flex-row gap-20">
<div className="flex flex-col relative m-10">
<MypageProfile
logout={t('mypage.logout')}
Expand All @@ -30,8 +28,8 @@ export default async function MyPage({
<MypageSeperate />
</div>
</div>
<div className={`flex justify-center items-center flex-col`}>
<div className={`mb-10 p-0 xl:p-50`}>
<div className="flex justify-center items-center flex-col">
<div className="mb-10 p-0 xl:p-50">
<MypageTable
totalList={t('mypage.totalList')}
noArticle={t('mypage.noArticle')}
Expand All @@ -40,7 +38,7 @@ export default async function MyPage({
link={''}
/>
</div>
<div className={`p-0 xl:p-50 `}>
<div className="p-0 xl:p-50">
<MypageTable
totalList={t('mypage.totalList')}
noArticle={t('mypage.noArticle')}
Expand Down

0 comments on commit 55ad170

Please sign in to comment.