Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit e2d1294

Browse files
[FE] refactor: 도움말 디자인 바꾸기 (#563)
* fix: width 크기 오류 해결 * refactor: 도움말 메뉴 내용 수정
1 parent 331c86f commit e2d1294

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/components/@common/Menu/Item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const S = {
2323
height: 4rem;
2424
2525
&:not(:last-child) {
26-
border: 1px solid ${({ theme }) => theme.color.gray4};
26+
box-shadow: 0px 1px 0px ${({ theme }) => theme.color.gray4};
2727
}
2828
2929
&:hover {

frontend/src/components/HelpMenu/HelpMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ const HelpMenu = () => {
1212

1313
const helpMenus = [
1414
{
15-
title: '동글 위키보러 가기',
15+
title: '사용법',
1616
handleMenuItemClick: () =>
1717
window.open(
1818
'https://github.com/woowacourse-teams/2023-dong-gle/wiki/%EB%8F%99%EA%B8%80-%EB%8F%84%EC%9B%80%EB%A7%90',
1919
),
2020
},
2121
{
22-
title: '피드백 주러 가기',
22+
title: '피드백',
2323
handleMenuItemClick: () => window.open('https://forms.gle/wSjCQKb4jhmFwSWQ9'),
2424
},
2525
];

0 commit comments

Comments
 (0)