Skip to content

Commit

Permalink
chore: adjust status
Browse files Browse the repository at this point in the history
  • Loading branch information
noyyyy committed Nov 28, 2023
1 parent 2a30290 commit 273d2d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/ui/GameStatusBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ interface IHangSign {
export function HangSign({ name, value, tip }: IHangSign) {
return (
<Tooltip title={tip}>
<div className="flex flex-col h-20 w-20 mx-6 bg-cover bg-[url('/assets/status_board.png')]">
<div className="flex flex-col h-[82px] w-28 mx-6 bg-cover bg-[url('/assets/status_board.png')]">
<div className="mt-6 ml-3">
<div className="text-white">{name}</div>
</div>
<div className="flex flow-row justify-end mr-2">
<div className="flex flow-row justify-end mr-3">
<div className="text-white">{value}</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/ui/Playlist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const PlayerList: React.FC = () => {
}

return (
<div className="fixed right-4 top-[160px] h-[820px] bg-contain bg-no-repeat bg-[url('/assets/player_info.png')]">
<div className="fixed right-4 top-[100px] h-[820px] bg-contain bg-no-repeat bg-[url('/assets/player_info.png')]">
<div className="ml-4 mt-6 text-black">Players Info</div>
<div className="pl-4 pr-2 mt-2 w-72 h-20 ">
{mapList?.map((player) => {
Expand Down

0 comments on commit 273d2d0

Please sign in to comment.