Skip to content

Commit

Permalink
Merge pull request #600 from woowacourse-teams/refactor/599-refactor-…
Browse files Browse the repository at this point in the history
…search-words

검색 페이지의 문구를 수정한다.
  • Loading branch information
jeongwusi authored Oct 19, 2023
2 parents 90fde31 + 7894fe5 commit 783d3ad
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions client/src/pages/SearchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ const SearchPage = () => {

<Spacer $size="2" />

<SearchDetailsButton onClick={() => setIsDetailEnabled(!isDetailEnabled)}>
주소나 메뉴 이름으로 검색하기
</SearchDetailsButton>
<SearchDetailsButton onClick={() => setIsDetailEnabled(!isDetailEnabled)}>검색 옵션</SearchDetailsButton>
<Spacer $size="4" />
<SearchDetails $show={isDetailEnabled}>
<FormGroup>
Expand Down Expand Up @@ -128,9 +126,13 @@ const SearchButton = styled.button`

const SearchDetailsButton = styled.button.attrs({ type: 'button' })`
cursor: pointer;
font-size: ${({ theme }) => theme.fontSize.sm};
color: ${({ theme }) => theme.color.gray};
font-weight: 600;
color: ${({ theme }) => theme.color.primary};
background: none;
border-bottom: solid 1px ${({ theme }) => theme.color.primary};
`;

const SearchDetails = styled.div<{ $show: boolean }>`
Expand Down

0 comments on commit 783d3ad

Please sign in to comment.