-
Notifications
You must be signed in to change notification settings - Fork 8
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 #967 from 42organization/GGFE-206-아이템-보관함-조회-api-연결
[GGFE-206] 아이템 보관함 조회 api 연결
- Loading branch information
Showing
5 changed files
with
70 additions
and
13 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,17 @@ | ||
import NotiEmptyEmoji from 'public/image/noti_empty.svg'; | ||
import styles from 'styles/EmptyImage.module.scss'; | ||
|
||
function EmptyImage() { | ||
return ( | ||
<div className={styles.emptyWrapper}> | ||
<div className={styles.threeDots}> | ||
<div className={styles.dot}></div> | ||
<div className={styles.dot}></div> | ||
<div className={styles.dot}></div> | ||
</div> | ||
<NotiEmptyEmoji /> | ||
</div> | ||
); | ||
} | ||
|
||
export default EmptyImage; |
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,19 @@ | ||
.emptyWrapper { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0 auto; | ||
align-items: center; | ||
} | ||
|
||
.threeDots { | ||
display: flex; | ||
gap: 2.5rem; | ||
margin-bottom: 2rem; | ||
} | ||
|
||
.dot { | ||
width: 0.75rem; | ||
height: 0.75rem; | ||
background-color: rgb(169, 128, 175); | ||
border-radius: 50%; | ||
} |
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