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

[FE] refactor: 도움말 디자인 바꾸기 #563

Merged
merged 2 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/@common/Menu/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/HelpMenu/HelpMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
},
];
Expand Down
Loading