From 5bdcd946cf835f520686e720a59e40a44335138c Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Wed, 5 Nov 2025 08:55:29 +0100 Subject: [PATCH] Update diagonal cell styling in TournamentsView for improved visibility Modified the CSS for diagonal cells in TournamentsView to change the background and text color from black to a lighter gray. This enhancement improves the visual clarity of the tournament display, making it easier for users to identify active matches. --- frontend/src/views/TournamentsView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/TournamentsView.vue b/frontend/src/views/TournamentsView.vue index 9499683..5eb629d 100644 --- a/frontend/src/views/TournamentsView.vue +++ b/frontend/src/views/TournamentsView.vue @@ -1780,8 +1780,8 @@ button { } .diagonal { - background-color: #000; - color: #000; + background-color: #bbb; + color: #bbb; display: block; position: absolute; top: 0;