From c38e813d57e33adc7815488a392a2cc9595efa25 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 16 Jul 2020 09:20:42 -0400 Subject: [PATCH] Make statblocks highlight when hovered over --- src/components/Combat.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/Combat.vue b/src/components/Combat.vue index e0c48d2..383267b 100644 --- a/src/components/Combat.vue +++ b/src/components/Combat.vue @@ -187,6 +187,12 @@ a { justify-content: start; height: 100%; } +.statblock:hover { + background: #444; +} +.statblock:hover[data-active] { + background: #666; +}