From 4cbeab19dfb36cfce38d9c28dc61765656fd008c Mon Sep 17 00:00:00 2001 From: Mashy Date: Thu, 7 Nov 2019 17:44:27 +1000 Subject: [PATCH] unlock game construct size --- client/assets/styles/game.less | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/client/assets/styles/game.less b/client/assets/styles/game.less index b51ce13c..6f781d54 100644 --- a/client/assets/styles/game.less +++ b/client/assets/styles/game.less @@ -35,6 +35,14 @@ position: absolute; bottom: 0; height: 50%; + + .avatar { + z-index: 1; + position: absolute; + top: 0; + height: 100%; + width: 100%; + } } .opponent { @@ -53,6 +61,13 @@ "right" "left"; + .avatar { + position: absolute; + top: 3em; + height: 100%; + width: 100%; + } + .right { height: 100%; display: grid; @@ -60,7 +75,7 @@ grid-template-areas: "stats" "name" - "avatar"; + "avatar" } .effects { @@ -130,6 +145,7 @@ margin-bottom: 0.25em; text-align: center; grid-area: name; + z-index: 2; span { background-color: black; }