-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from LikeLionHGU/#82_sungyu_모바일스타일적용
#82 sungyu 모바일스타일적용
- Loading branch information
Showing
16 changed files
with
142 additions
and
114 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
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
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,36 @@ | ||
import React from "react"; | ||
import styled from "styled-components"; | ||
import { Vertical } from "../../styles/CommunalStyle"; | ||
import CompleteImg from "../../imgs/Saly-37.png"; | ||
|
||
const Title = styled.p` | ||
font-family: "SUITLight"; | ||
font-size: 30px; | ||
margin-bottom: 80px; | ||
`; | ||
|
||
const StyledBtn = styled.button` | ||
width: 408px; | ||
height: 70px; | ||
flex-shrink: 0; | ||
border-radius: 16px; | ||
background: var(--70, #3fc87e); | ||
font-family: "SUITLight"; | ||
font-size: 24px; | ||
text-align: center; | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
margin-top: 47px; | ||
`; | ||
function CancelPhone(props) { | ||
return ( | ||
<Vertical> | ||
<Title>알림톡 취소신청이 완료되었어요</Title> | ||
<img src={CompleteImg} alt="completeImg" /> | ||
<StyledBtn onClick={props.closeModal}>계속하기</StyledBtn> | ||
</Vertical> | ||
); | ||
} | ||
|
||
export default CancelPhone; |
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,36 @@ | ||
import React from "react"; | ||
import styled from "styled-components"; | ||
import { Vertical } from "../../styles/CommunalStyle"; | ||
import CompleteImg from "../../imgs/Saly-26.png"; | ||
|
||
const Title = styled.p` | ||
font-family: "SUITLight"; | ||
font-size: 30px; | ||
margin-bottom: 80px; | ||
`; | ||
|
||
const StyledBtn = styled.button` | ||
width: 408px; | ||
height: 70px; | ||
flex-shrink: 0; | ||
border-radius: 16px; | ||
background: var(--70, #3fc87e); | ||
font-family: "SUITLight"; | ||
font-size: 24px; | ||
text-align: center; | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
margin-top: 47px; | ||
`; | ||
function CompletePhoneComponent(props) { | ||
return ( | ||
<Vertical> | ||
<Title>알림톡 신청이 완료되었어요</Title> | ||
<img src={CompleteImg} alt="completeImg" /> | ||
<StyledBtn onClick={props.closeModal}>계속하기</StyledBtn> | ||
</Vertical> | ||
); | ||
} | ||
|
||
export default CompletePhoneComponent; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.