-
Notifications
You must be signed in to change notification settings - Fork 3
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 #6 from marina-yhm/test
Feat: Home화면 구현
- Loading branch information
Showing
18 changed files
with
210 additions
and
27 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 @@ | ||
import { atom } from "recoil"; | ||
|
||
const storeStatus = atom({ | ||
key: "storeStatus", // 전역적으로 고유한 값 | ||
default: false, // 초깃값 | ||
}); | ||
|
||
export default storeStatus; |
Binary file not shown.
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,5 +1,5 @@ | ||
.header { | ||
width: 73.75rem; | ||
width: 100%; | ||
height: 5.5rem; | ||
background-color: #2e2d2d; | ||
} | ||
|
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 |
---|---|---|
|
@@ -16,9 +16,6 @@ | |
flex-direction: column; | ||
} | ||
|
||
.navbarStore { | ||
} | ||
|
||
.icon-group { | ||
display: flex; | ||
flex-direction: column; | ||
|
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,7 @@ | ||
import React from "react"; | ||
|
||
const Complete = () => { | ||
return <div>Complete</div>; | ||
}; | ||
|
||
export default Complete; |
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,10 @@ | ||
.Box { | ||
width: 100%; /* 너비 설정 */ | ||
height: 95%; /* 높이 설정 */ | ||
padding-top: 5%; | ||
} | ||
|
||
.status-header { | ||
padding-left: 1%; | ||
border-bottom: 8px solid #d82356; | ||
} |
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,7 @@ | ||
import React from "react"; | ||
|
||
const Progress = () => { | ||
return <div>Progress</div>; | ||
}; | ||
|
||
export default Progress; |
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,28 @@ | ||
.rounded-rectangle { | ||
width: 100%; /* 너비 설정 */ | ||
height: 97%; /* 높이 설정 */ | ||
background-color: #f5f5f5; /* 배경색 설정 */ | ||
border-radius: 20px; /* 모서리를 둥글게 만드는 값 */ | ||
text-align: center; /* 가운데 정렬 */ | ||
color: #000; /* 텍스트 색상 설정 */ | ||
font-size: 18px; /* 폰트 크기 설정 */ | ||
line-height: 100px; /* 수직 가운데 정렬을 위한 높이 설정 */ | ||
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.Box { | ||
width: 100%; /* 너비 설정 */ | ||
height: 100%; /* 높이 설정 */ | ||
padding-top: 5%; | ||
padding-left: 0; | ||
} | ||
|
||
.top-font { | ||
color: #000; | ||
font-family: Pretendard; | ||
font-size: 1.25rem; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: 130%; /* 1.625rem */ | ||
letter-spacing: -0.0125rem; | ||
} |
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,15 @@ | ||
import React from "react"; | ||
import { Container } from "react-bootstrap"; | ||
import "./Receipt.css"; | ||
|
||
const Receipt = () => { | ||
return ( | ||
<Container className="Box"> | ||
<div className="rounded-rectangle"> | ||
<div className="top-font">주문번호 531</div> | ||
</div> | ||
</Container> | ||
); | ||
}; | ||
|
||
export default Receipt; |
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,7 @@ | ||
import React from "react"; | ||
|
||
const Wait = () => { | ||
return <div>Wait</div>; | ||
}; | ||
|
||
export default Wait; |
Oops, something went wrong.