-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge: merge from feature/110 to main
Fix: fix add trip page error
- Loading branch information
Showing
2 changed files
with
99 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from "react"; | ||
import styled from "styled-components"; | ||
|
||
const SuccessAddTripContent = () => { | ||
return ( | ||
<SuccessContent> | ||
<ContentDiv> | ||
<ContentP> | ||
여행이 추가되었습니다. | ||
</ContentP> | ||
</ContentDiv> | ||
</SuccessContent> | ||
); | ||
}; | ||
|
||
const SuccessContent = styled.div` | ||
width: 100%; | ||
height: fit-content; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
padding: 1rem; | ||
`; | ||
|
||
|
||
const ContentDiv =styled.div` | ||
padding: 2rem 1em; | ||
margin: 1rem; | ||
`; | ||
|
||
const ContentP = styled.p` | ||
font-size: 1.8rem; | ||
text-align: center; | ||
line-height: 1.5rem; | ||
font-weight: 700; | ||
line-height : normal; | ||
`; | ||
|
||
export default SuccessAddTripContent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters