From 95d3af4930e6c8fa1aa04ad4bd236af5e0a2b9f0 Mon Sep 17 00:00:00 2001 From: Nikolay Tatarinov Date: Fri, 6 Mar 2026 19:11:52 +0300 Subject: [PATCH] fix: improve styling in ContactLinks component - Updated the row class in the ContactLinks component to include a shadow effect, enhancing visual depth and user experience. - Ensured consistent styling across light and dark themes by adjusting background properties. --- webapp-next/src/components/contact/ContactLinks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp-next/src/components/contact/ContactLinks.tsx b/webapp-next/src/components/contact/ContactLinks.tsx index d5d234c..0654a50 100644 --- a/webapp-next/src/components/contact/ContactLinks.tsx +++ b/webapp-next/src/components/contact/ContactLinks.tsx @@ -112,7 +112,7 @@ export function ContactLinks({ if (layout === "block") { const rowClass = - "flex h-12 items-center gap-0 rounded-md border border-input bg-background text-accent hover:bg-accent/10 hover:text-accent"; + "flex h-12 items-center gap-0 rounded-md border border-input bg-background shadow-xs text-accent hover:bg-accent/10 hover:text-accent dark:bg-input/30 dark:hover:bg-input/50"; return (