From e544ed216869c1fb0c24036bd9341f3647c2968b Mon Sep 17 00:00:00 2001 From: ntr Date: Sat, 9 Nov 2019 10:53:57 +1100 Subject: [PATCH] faceoff text alignment --- client/assets/styles/instance.less | 6 +++++- server/src/game.rs | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/client/assets/styles/instance.less b/client/assets/styles/instance.less index fdf9f4cd..ac67927a 100644 --- a/client/assets/styles/instance.less +++ b/client/assets/styles/instance.less @@ -379,11 +379,15 @@ .faceoff-text { grid-area: text; - font-size: 200%; text-transform: uppercase; letter-spacing: 1em; font-weight: bold; + display: flex; + flex-flow: column; + justify-content: center; + + color: @black; animation: faceoff 4s ease-in-out 0s 2 alternate; diff --git a/server/src/game.rs b/server/src/game.rs index 1eaa786b..ead95592 100644 --- a/server/src/game.rs +++ b/server/src/game.rs @@ -506,7 +506,6 @@ impl Game { } // only reduce cooldowns if no cd was used - // have to borrow self for the skill check { if let Some(skill) = resolved.iter() .filter(|s| s.source_construct_id == construct.id)