Skip to content

Commit

Permalink
Design: 로그인 컴포넌트 테마 변수 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
HOOOO98 committed Nov 8, 2023
1 parent f182f40 commit ca34abb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ function App() {
</Routes>
<div className="App" style={{ display: 'flex' }}>
<NavigationBar></NavigationBar>
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/community" element={<CommunityPage />} />
<Route path="/chat" element={<ChatPage />} />
<Route path="/mypage" element={<MyPage />} />
</Routes>
<PageWrap>
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/community" element={<CommunityPage />} />
<Route path="/chat" element={<ChatPage />} />
<Route path="/mypage" element={<MyPage />} />
</Routes>
</PageWrap>
</div>
</BrowserRouter>
</ThemeProvider>
Expand Down
2 changes: 1 addition & 1 deletion src/components/login/SignUpSpecific.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const CustomDatePicker = styled(DatePicker)`
width: 140px;
height: 50px;
padding: 0 23px;
border: 1px solid #949494;
border: 1px solid ${(props) => props.theme.color.borderGray};
border-radius: 12px;
background: #fff;
&:focus {
Expand Down

0 comments on commit ca34abb

Please sign in to comment.