diff --git a/WORKLOG.md b/WORKLOG.md
index 2b63b924..23d9bfdb 100644
--- a/WORKLOG.md
+++ b/WORKLOG.md
@@ -33,9 +33,7 @@
## NOW
*CLIENT*
-targeting arrows back?
reconnect based on time delta
-dont' nav to list on connect
menu footer
diff --git a/client/assets/styles/game.css b/client/assets/styles/game.css
index 82144be3..72f6282c 100644
--- a/client/assets/styles/game.css
+++ b/client/assets/styles/game.css
@@ -74,13 +74,11 @@
}
.game-construct .targeting {
- grid-area: target;
- display: flex;
- flex-flow: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- white-space: nowrap;
+ grid-area: avatar;
+ position: relative;
+ left: 60%;
+ top: 50%;
+ text-align: center;
}
.game-construct .img {
diff --git a/client/src/components/game.component.jsx b/client/src/components/game.component.jsx
index 85d4a795..a59c621a 100644
--- a/client/src/components/game.component.jsx
+++ b/client/src/components/game.component.jsx
@@ -81,8 +81,8 @@ function GamePanel(props) {
);
function PlayerTeam(team) {
- const constructs = team.constructs.map(c =>
-