From 8f630321fd019a52a53cdfdfd2f47f160b850a7b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 01:28:00 +0100 Subject: [PATCH] Add CSS class for row layout with space-between alignment --- client/src/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/client/src/index.css b/client/src/index.css index 3b3fb80..37dc8a7 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -290,6 +290,13 @@ h4 { margin: 0.5rem 0; } +.row-between { + display: flex; + justify-content: space-between; + align-items: center; + gap: 0.5rem; +} + .link { background: transparent; }