diff --git a/client/game.css b/client/game.css index 481cc37b..d5fc922a 100644 --- a/client/game.css +++ b/client/game.css @@ -46,10 +46,10 @@ .opponent .game-cryp { grid-template-rows: auto auto minmax(0, 1fr) auto; grid-template-areas: - ". stats" - ". effects" - "target avatar" - ". skills"; + "stats ." + "effects ." + "avatar target" + "skills ."; } .game-cryp { @@ -60,12 +60,12 @@ /*grid-template-rows: minmax(0, 1fr) minmax(0, 2fr) auto minmax(0, 1fr);*/ /*grid-template-columns: min-content minmax(0, 1fr);*/ - grid-template-columns: min-content 1fr 1fr; + grid-template-columns: 1fr min-content 1fr; grid-template-rows: 1fr 2fr 1fr; grid-template-areas: - ". skills skills" - "target avatar avatar" - "effects stats stats"; + "skills . ." + "avatar target ." + "stats effects ."; transition-property: all; transition-duration: 0.5s; diff --git a/client/src/components/game.component.jsx b/client/src/components/game.component.jsx index 4512a4e1..935e5c1a 100644 --- a/client/src/components/game.component.jsx +++ b/client/src/components/game.component.jsx @@ -138,7 +138,7 @@ function GamePanel(props) { {effects}