From da6dd007d9b7517a7cd6f20e5bf29883f3d003a8 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Thu, 26 Feb 2026 09:19:45 +0100 Subject: [PATCH] Fix image centering with display:block + margin:auto Co-Authored-By: Claude Opus 4.6 --- app/templates/recipe_edit.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/templates/recipe_edit.html b/app/templates/recipe_edit.html index eb1dcc4..2e6ddc7 100644 --- a/app/templates/recipe_edit.html +++ b/app/templates/recipe_edit.html @@ -189,6 +189,8 @@ border-radius: var(--radius); object-fit: cover; border: 1px solid var(--border); + display: block; + margin: 0 auto; } .image-controls { margin-top: 0.75rem;