From efafddbe997fb5ad61adee72fd1670908460a519 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sun, 24 Oct 2021 20:08:04 +0200 Subject: [PATCH] fixed bug where caption was indexed over the scoreboard --- src/components/ScoreTeam.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/ScoreTeam.vue b/src/components/ScoreTeam.vue index 49bd9d3..4a07ad7 100644 --- a/src/components/ScoreTeam.vue +++ b/src/components/ScoreTeam.vue @@ -121,6 +121,8 @@ table { margin-left: -78px; margin-bottom: -158px; + z-index: 0; + .hidden { color: transparent; user-select: none; @@ -159,6 +161,11 @@ table { } } + tbody { + position: relative; + z-index: 1; + } + tr { height: 40px; }