Skip to content

Commit

Permalink
Chore(change color): 공지사항 검색 폼 글짜 색 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hwinkr committed Feb 6, 2024
1 parent 75e79c8 commit 7d8d1f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/InformUpperLayout/InformSearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import TOAST_MESSAGES from '@constants/toast-message';
import styled from '@emotion/styled';
import useRouter from '@hooks/useRouter';
import useToasts from '@hooks/useToast';
import { THEME } from '@styles/ThemeProvider/theme';
import React, { useRef } from 'react';

interface InformSearchForm {
Expand Down Expand Up @@ -60,12 +61,12 @@ const StyledInput = styled.input`
border: 0;
border-radius: 15px;
background-color: #7a9dd30f;
color: #7a9dd366;
color: ${THEME.TEXT.BLACK};
font-size: 14px;
text-indent: 5px;
&::placeholder {
color: #7a9dd366;
color: ${THEME.TEXT.GRAY};
font-size: 14px;
}
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
Expand Down

0 comments on commit 7d8d1f4

Please sign in to comment.