From acaa575b08290730c24bb7b2763a717cd88dd209 Mon Sep 17 00:00:00 2001 From: elpatron Date: Thu, 28 May 2026 11:26:20 +0200 Subject: [PATCH] style: define mb-6 and other margin utilities to fix vertical spacing in logbook entries list --- client/src/App.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/client/src/App.css b/client/src/App.css index 8908705..44ed53d 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -472,10 +472,30 @@ body { gap: 16px; } +.mt-2 { + margin-top: 8px; +} + .mt-4 { margin-top: 16px; } +.mt-6 { + margin-top: 24px; +} + +.mb-2 { + margin-bottom: 8px; +} + +.mb-4 { + margin-bottom: 16px; +} + +.mb-6 { + margin-bottom: 24px; +} + .list-section { display: flex; flex-direction: column;