-
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/78 to main
Update: complete invite friend page & join trip page
- Loading branch information
Showing
8 changed files
with
284 additions
and
40 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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 SuccessCopyContent = () => { | ||
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 SuccessCopyContent; |
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 SuccessCopyContent = () => { | ||
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 SuccessCopyContent; |
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
Oops, something went wrong.