Skip to content

Commit

Permalink
feat: add space between victory players
Browse files Browse the repository at this point in the history
  • Loading branch information
bbb169 committed Oct 22, 2023
1 parent b203d09 commit 514ee40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/playRoom/component/settleMoal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ export function SettleMoal () {
`}>
<h2>获胜玩家</h2>
{
victoryPlayers?.map(([player, victoryInfo]) => <div key={player.name}>
victoryPlayers?.map(([player, victoryInfo]) => <div key={player.name} css={css`
margin-bottom: 8px;
`}>
<Popconfirm title={
<div css={css`
width: 80vw;
Expand Down

0 comments on commit 514ee40

Please sign in to comment.