From aa61583bd70337baf779dbf7c05746f3dd12ad08 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:42:00 +0100 Subject: [PATCH] Add styles for correct and incorrect input rows --- client/src/index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/client/src/index.css b/client/src/index.css index 1adcd5f..858edce 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -510,6 +510,16 @@ h4 { font-weight: 700; } +.match-row.correct .input { + background: #e6f7ed; + border-color: #b7e4c7; +} + +.match-row.incorrect .input { + background: #fde8e8; + border-color: #f5b7b1; +} + .option-hints { font-size: 0.9rem; color: var(--muted);