diff --git a/FE/src/features/game/components/ParticipantDisplay.tsx b/FE/src/features/game/components/ParticipantDisplay.tsx index c99b1c2..54765ae 100644 --- a/FE/src/features/game/components/ParticipantDisplay.tsx +++ b/FE/src/features/game/components/ParticipantDisplay.tsx @@ -34,9 +34,7 @@ const ParticipantDisplay: React.FC = ({ gameState }) => className="flex justify-between mt-2 pb-2 border-b border-default items-center" key={player.playerId} > -
- {player.emoji + ' ' + player.playerName}{' '} -
+
{player.emoji + ' ' + player.playerName}
{player.isHost && ( 방장 👑 @@ -70,9 +68,7 @@ const ParticipantDisplay: React.FC = ({ gameState }) => layout transition={{ type: 'spring', stiffness: 100, damping: 20 }} > -
- {player.emoji + ' ' + player.playerName} -
+
{player.emoji + ' ' + player.playerName}
= ({ gameState }) => layout transition={{ type: 'spring', stiffness: 100, damping: 20 }} > -
+
{(player.isAnswer ? player.emoji : '👻') + ' ' + player.playerName}
diff --git a/FE/src/index.css b/FE/src/index.css index a85f1a7..ecde18a 100644 --- a/FE/src/index.css +++ b/FE/src/index.css @@ -1,16 +1,9 @@ @import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap'); -@font-face { - font-family: 'NPSfontBold'; - src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontBold.woff2') - format('woff2'); - font-weight: 700; - font-style: bold; -} @font-face { - font-family: 'NPSfontBold'; - src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontRegular.woff2') - format('woff2'); + font-family: 'CookieRun-Regular'; + src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/CookieRun-Regular.woff') + format('woff'); font-weight: 400; font-style: normal; } @@ -28,9 +21,9 @@ @layer base { html { - font-family: 'NPSfontBold', 'Noto Color Emoji', ui-sans-serif, system-ui; + font-family: 'CookieRun-Regular', 'Noto Color Emoji', ui-sans-serif, system-ui; box-sizing: border-box; - color: #5f6e76; + color: #687880; } *, *::before,