From e2d12940de46b45289479b7c5117fef12ccf3c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=84=EC=A6=9D=ED=9B=88?= Date: Tue, 10 Oct 2023 11:16:19 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20refactor:=20=EB=8F=84=EC=9B=80=EB=A7=90?= =?UTF-8?q?=20=EB=94=94=EC=9E=90=EC=9D=B8=20=EB=B0=94=EA=BE=B8=EA=B8=B0=20?= =?UTF-8?q?(#563)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: width 크기 오류 해결 * refactor: 도움말 메뉴 내용 수정 --- frontend/src/components/@common/Menu/Item.tsx | 2 +- frontend/src/components/HelpMenu/HelpMenu.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/@common/Menu/Item.tsx b/frontend/src/components/@common/Menu/Item.tsx index cb1c67678..4d6e2eefe 100644 --- a/frontend/src/components/@common/Menu/Item.tsx +++ b/frontend/src/components/@common/Menu/Item.tsx @@ -23,7 +23,7 @@ const S = { height: 4rem; &:not(:last-child) { - border: 1px solid ${({ theme }) => theme.color.gray4}; + box-shadow: 0px 1px 0px ${({ theme }) => theme.color.gray4}; } &:hover { diff --git a/frontend/src/components/HelpMenu/HelpMenu.tsx b/frontend/src/components/HelpMenu/HelpMenu.tsx index cd07da605..53c28b3b7 100644 --- a/frontend/src/components/HelpMenu/HelpMenu.tsx +++ b/frontend/src/components/HelpMenu/HelpMenu.tsx @@ -12,14 +12,14 @@ const HelpMenu = () => { const helpMenus = [ { - title: '동글 위키보러 가기', + title: '사용법', handleMenuItemClick: () => window.open( 'https://github.com/woowacourse-teams/2023-dong-gle/wiki/%EB%8F%99%EA%B8%80-%EB%8F%84%EC%9B%80%EB%A7%90', ), }, { - title: '피드백 주러 가기', + title: '피드백', handleMenuItemClick: () => window.open('https://forms.gle/wSjCQKb4jhmFwSWQ9'), }, ];