-
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 branch 'main' into others/관리자-토너먼트-유저-추가-검색창-수정-#1175
- Loading branch information
Showing
12 changed files
with
58 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import styles from 'styles/UI/BouncingDots.module.scss'; | ||
|
||
export default function BouncingDots() { | ||
return ( | ||
<div className={styles.bouncingDots}> | ||
<div className={styles.dot}></div> | ||
<div className={styles.dot}></div> | ||
<div className={styles.dot}></div> | ||
</div> | ||
); | ||
} |
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,30 @@ | ||
.bouncingDots { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 1rem; | ||
.dot { | ||
width: 0.2rem; | ||
height: 0.2rem; | ||
background-color: white; | ||
border-radius: 50%; | ||
animation: wave 1.3s linear infinite; | ||
&:nth-child(2) { | ||
animation-delay: -1.1s; | ||
} | ||
&:nth-child(3) { | ||
animation-delay: -0.9s; | ||
} | ||
} | ||
} | ||
|
||
@keyframes wave { | ||
0%, | ||
60%, | ||
100% { | ||
margin-top: 0; | ||
} | ||
|
||
30% { | ||
margin-top: -0.3rem; | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -20,8 +20,8 @@ | |
.partyName { | ||
margin-left: 1rem; | ||
} | ||
|
||
.score { | ||
margin-right: 1rem; | ||
margin-left: auto; | ||
} | ||
} | ||
|