From d3e803beee0df2c1f7cacf3afef9c39bd0387091 Mon Sep 17 00:00:00 2001 From: EiSiMo Date: Tue, 21 Apr 2026 17:33:53 +0200 Subject: [PATCH] logo: rounded square instead of circle The image of Didi already has its own white halo, so the round crop + extra border made it look awkward. Back to the original rounded-square (border-radius 10px) shape and object-fit: contain so the whole dog stays visible instead of being cropped by the circular clip. Co-Authored-By: Claude Opus 4.7 (1M context) --- web/templates/base.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/web/templates/base.html b/web/templates/base.html index b31c924..30de71a 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -123,11 +123,10 @@ .map-popup-actions .btn { padding: 0.35rem 0.7rem; font-size: 12px; } .map-popup-actions form { margin: 0; } .brand-dot { - width: 2.25rem; height: 2.25rem; border-radius: 9999px; - object-fit: cover; display: block; - border: 2px solid #fff; - box-shadow: 0 1px 4px rgba(47, 138, 224, 0.35); + width: 2.25rem; height: 2.25rem; border-radius: 10px; + object-fit: contain; display: block; background: #fff; + box-shadow: 0 1px 4px rgba(47, 138, 224, 0.35); } a { color: var(--primary); } a:hover { text-decoration: underline; }