From 7894fe5a5c54fc2691acd6dca05c6a1ae05e7625 Mon Sep 17 00:00:00 2001 From: jeongwusi Date: Thu, 19 Oct 2023 18:00:03 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EA=B2=80=EC=83=89=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=EC=9D=98=20=EA=B2=80=EC=83=89=20=EB=AC=B8?= =?UTF-8?q?=EA=B5=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/pages/SearchPage.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/client/src/pages/SearchPage.tsx b/client/src/pages/SearchPage.tsx index 475d3945..31c1f6d6 100644 --- a/client/src/pages/SearchPage.tsx +++ b/client/src/pages/SearchPage.tsx @@ -49,9 +49,7 @@ const SearchPage = () => { - setIsDetailEnabled(!isDetailEnabled)}> - 주소나 메뉴 이름으로 검색하기 - + setIsDetailEnabled(!isDetailEnabled)}>검색 옵션 @@ -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 }>`