From 60ffdb418b139a1198d308b517c7b7e0fb9e9ce0 Mon Sep 17 00:00:00 2001 From: navyjeongs Date: Wed, 22 Nov 2023 01:05:02 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Design:=20=EB=A7=88=EC=9D=B4=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/mypage.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/mypage.tsx b/src/pages/mypage.tsx index 8fcc43dc..3973df99 100644 --- a/src/pages/mypage.tsx +++ b/src/pages/mypage.tsx @@ -147,6 +147,7 @@ export const getServerSideProps = async (context: GetServerSidePropsContext) => const Container = styled.div` margin: 0 auto; + color: #020202; `; const Wrapper = styled.div` @@ -157,13 +158,14 @@ const Wrapper = styled.div` `; const Contents = styled.div` - width: 60rem; - background-color: #edede9; + width: 50rem; + background-color: #f2f2f2; border-radius: 2rem; `; const Title = styled.h2` text-align: center; + margin: 2rem 0; `; const Content = styled.div` From 9521b468d7c6c042ceed73786aa31c7d1bf99e40 Mon Sep 17 00:00:00 2001 From: navyjeongs Date: Wed, 22 Nov 2023 01:06:03 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Design:=20=EB=93=9C=EB=A1=AD=EB=8B=A4?= =?UTF-8?q?=EC=9A=B4=20=EC=9C=84=EC=B9=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Header/Header.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index 0e3da630..56b75b0c 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -183,9 +183,9 @@ const DropDown = styled.ul<{ click: boolean }>` width: 10rem; top: 5.5rem; - right: 0rem; + right: 2.5rem; - color: black; + color: #020202; `; const DropList = styled.li` @@ -200,5 +200,5 @@ const DropList = styled.li` color: #000000; height: 4rem; - border: 1px solid black; + border: 1px solid #020202; `;