diff --git a/TODOS.md b/TODOS.md index f42cc69..8942184 100644 --- a/TODOS.md +++ b/TODOS.md @@ -1,8 +1,8 @@ # TODOS -- [ ] Game image in finish dialog -- [ ] Show player personal best in chug dialog +- [ ] Add sound when chug is drawn - [ ] Shuffle players at game start +- [ ] Show player personal best in chug dialog - [ ] Location support - [ ] Better independent sound handling - [ ] Assets preloading diff --git a/src/components/ConfirmDialog/index.tsx b/src/components/ConfirmDialog/index.tsx index eb6775b..80b5e35 100644 --- a/src/components/ConfirmDialog/index.tsx +++ b/src/components/ConfirmDialog/index.tsx @@ -1,12 +1,12 @@ import React from "react"; import { + Button, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, - Button, } from "@mui/material"; interface ConfirmDialogProps { diff --git a/src/views/Game/components/ChugsList.tsx b/src/views/Game/components/ChugsList.tsx index 1144e84..27d1e05 100644 --- a/src/views/Game/components/ChugsList.tsx +++ b/src/views/Game/components/ChugsList.tsx @@ -105,6 +105,7 @@ const ChugsList: FunctionComponent = () => { display: "flex", justifyContent: "center", alignItems: "center", + fontWeight: "bold", }} variant="outlined" key={i} diff --git a/src/views/Game/components/PlayerItem.tsx b/src/views/Game/components/PlayerItem.tsx index cefd8a7..d53b965 100644 --- a/src/views/Game/components/PlayerItem.tsx +++ b/src/views/Game/components/PlayerItem.tsx @@ -5,6 +5,7 @@ import { List, ListItem, ListItemText, + Slide, Stack, Typography, useTheme, @@ -107,14 +108,15 @@ const PlayerItem: FunctionComponent = (props) => { paddingRight: 1, paddingLeft: 1, height: 30, + overflow: "hidden", }} > {new Array(playerMetrics.numberOfBeers).fill(0).map((_, i) => ( - + - + ))}