From c143e2df0d4784c6ce72fd0bf66affb0642fad87 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 01:01:36 +0100 Subject: [PATCH] Modify entry card style and add actions container --- client/src/index.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/client/src/index.css b/client/src/index.css index 86a1cd1..7a9bc28 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -74,7 +74,8 @@ h4 { } .entry-card { - display: block; + display: flex; + flex-direction: column; background: var(--card); padding: 1rem; border-radius: 16px; @@ -107,6 +108,12 @@ h4 { color: var(--muted); } +.entry-card__actions { + display: flex; + gap: 0.5rem; + margin-top: 0.75rem; +} + .pill { display: inline-flex; align-items: center;