-
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.
- Loading branch information
1 parent
30339b8
commit 5ee53ca
Showing
12 changed files
with
275 additions
and
80 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 |
---|---|---|
@@ -1,38 +1,4 @@ | ||
.App { | ||
text-align: center; | ||
} | ||
|
||
.App-logo { | ||
height: 40vmin; | ||
pointer-events: none; | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
.App-logo { | ||
animation: App-logo-spin infinite 20s linear; | ||
} | ||
} | ||
|
||
.App-header { | ||
background-color: #282c34; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: calc(10px + 2vmin); | ||
color: white; | ||
} | ||
|
||
.App-link { | ||
color: #61dafb; | ||
} | ||
|
||
@keyframes App-logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
* { | ||
padding: 0px; | ||
text-decoration: none; | ||
} |
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,2 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css } from "@emotion/react"; |
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,43 @@ | ||
import React from "react"; | ||
import styled from "@emotion/styled"; | ||
import { | ||
InnerContainer, | ||
Inners, | ||
SignTitle, | ||
InputContainer, | ||
SignButton, | ||
SignInput, | ||
Cblock, | ||
CheckContainer, | ||
} from "../../../emotion/component"; | ||
import { Link } from "react-router-dom"; | ||
const Findid = () => { | ||
return ( | ||
<> | ||
<Inners> | ||
<CheckContainer> | ||
<Link to="/findid"> | ||
<Cblock width="10rem" background="#A1D99D" color="#F8F9E3"> | ||
아이디 찾기 | ||
</Cblock> | ||
</Link> | ||
<Link to="/findpass"> | ||
<Cblock width="10rem" background="#E1F0DF" color="#76C56F"> | ||
비밀번호 찾기 | ||
</Cblock> | ||
</Link> | ||
</CheckContainer> | ||
<InnerContainer width={"50rem"}> | ||
<SignTitle>아이디 찾기</SignTitle> | ||
<InputContainer> | ||
<SignInput placeholder="이름을 입력하세요" /> | ||
<SignInput placeholder="가입시 입력한 휴대폰 번호를 입력하세요" /> | ||
<SignButton>아이디 찾기</SignButton> | ||
</InputContainer> | ||
</InnerContainer> | ||
</Inners> | ||
</> | ||
); | ||
}; | ||
|
||
export default Findid; |
Empty file.
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,44 @@ | ||
import React from "react"; | ||
import styled from "@emotion/styled"; | ||
import { | ||
InnerContainer, | ||
Inners, | ||
SignTitle, | ||
InputContainer, | ||
SignButton, | ||
SignInput, | ||
Cblock, | ||
CheckContainer, | ||
} from "../../../emotion/component"; | ||
import { Link } from "react-router-dom"; | ||
const Findid = () => { | ||
return ( | ||
<> | ||
<Inners> | ||
<CheckContainer> | ||
<Link to="/findid"> | ||
<Cblock width="10rem" background="#A1D99D" color="#F8F9E3"> | ||
아이디 찾기 | ||
</Cblock> | ||
</Link> | ||
<Link to="/findpass"> | ||
<Cblock width="10rem" background="#E1F0DF" color="#76C56F"> | ||
비밀번호 찾기 | ||
</Cblock> | ||
</Link> | ||
</CheckContainer> | ||
<InnerContainer width={"50rem"}> | ||
<SignTitle>비밀번호 찾기</SignTitle> | ||
<InputContainer> | ||
<SignInput placeholder="아이디를 입력하세요" /> | ||
<SignInput placeholder="이름을 입력하세요" /> | ||
<SignInput placeholder="가입시 입력한 휴대폰 번호를 입력하세요" /> | ||
<SignButton>아이디 찾기</SignButton> | ||
</InputContainer> | ||
</InnerContainer> | ||
</Inners> | ||
</> | ||
); | ||
}; | ||
|
||
export default Findid; |
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
Oops, something went wrong.