Skip to content

Commit

Permalink
디자인 수정 (#75)
Browse files Browse the repository at this point in the history
* fix: 라우터 추가

* fix: 레이아웃 수정
  • Loading branch information
jwo0o0 authored Nov 1, 2023
1 parent cdcf0bf commit 79628d3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ function App() {
<Routes>
<Route path={'/'} element={<LandingPage />} />
<Route path={'/home'} element={<HomePage />} />
<Route path={'/home/*'} element={<HomePage />} />
<Route path={'/write'} element={<WritePage />} />
<Route path={'/userinfo'} element={<UserInfoPage />} />
<Route path={'/plan/:planId'} element={<PlanPage />} />
Expand Down
4 changes: 2 additions & 2 deletions src/components/plan/PlanText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const GoalContainer = styled.div`
height: 90px;
padding: 6px;
border-radius: 8px;
background-color: white;
background-color: transparent;
display: flex;
align-items: center;
Expand All @@ -101,7 +101,7 @@ const GoalText = styled.div`
font-family: 'PretendardMedium';
font-size: 14px;
line-height: 15px;
color: ${({ theme }) => theme.colors.gray_900};
color: white;
word-wrap: keep-all;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/components/planedit/EditButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const DoneBtn = styled(Button)`

const EditInfoText = styled.div`
width: 390px;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
Expand All @@ -88,7 +89,6 @@ const EditInfoText = styled.div`
}
div {
flex: 1;
font-family: 'PretendardMedium';
font-size: 14px;
color: #525463;
Expand Down
1 change: 1 addition & 0 deletions src/pages/Mypage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const InfoContainer = styled.div`
display: flex;
flex-direction: column;
width: 390px;
padding: 0 30px;
margin-top: 30px;
`;

Expand Down

0 comments on commit 79628d3

Please sign in to comment.