From b3d760bd115a494868954472e90154da924a6e3e Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:22:55 +0100 Subject: [PATCH] Style explanation header with flexbox --- client/src/index.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/src/index.css b/client/src/index.css index c2ec554..1ac8a6a 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -524,6 +524,14 @@ h4 { border-top: 1px solid var(--border); } +.explanation-header { + display: flex; + justify-content: space-between; + align-items: center; + gap: 0.5rem; + margin-bottom: 0.5rem; +} + .explanation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));