From 4017ba3b72fad7e99ac4c80a5ffbb193b1b1c112 Mon Sep 17 00:00:00 2001 From: moh Date: Sun, 20 Sep 2026 19:40:02 +0200 Subject: [PATCH] POLISHED - Soften dock hover magnification and enlarge tooltip text --- components/layout/site-dock.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/layout/site-dock.tsx b/components/layout/site-dock.tsx index a9f05ab..399acb7 100644 --- a/components/layout/site-dock.tsx +++ b/components/layout/site-dock.tsx @@ -62,8 +62,8 @@ export function SiteDock({ defaultLocale, isSuperAdmin = false }: SiteDockProps) {/* ── Logo (fixed src → no refresh flash) ── */} @@ -150,10 +150,10 @@ function DockTip({ label, soon }: { label: string; soon?: string }) { return ( {label} - {soon ? {soon} : null} + {soon ? {soon} : null} ); }