From 6b9b4654ed1d9d78d150759ecf95fa0ad0803293 Mon Sep 17 00:00:00 2001 From: JeffEmmett <20747463-JeffEmmett@users.noreply.replit.com> Date: Mon, 19 May 2025 19:38:37 +0000 Subject: [PATCH] Reduce the size of logos throughout the Pilates With Fadia website Reduces the size of the logos in `footer.tsx` and `logo.tsx` components by 20%. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/689d1577-05ed-474d-ab2c-ff6f6b771ea5.jpg --- client/src/components/navigation/footer.tsx | 2 +- client/src/components/ui/logo.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/navigation/footer.tsx b/client/src/components/navigation/footer.tsx index 4dba19c..9e728dd 100644 --- a/client/src/components/navigation/footer.tsx +++ b/client/src/components/navigation/footer.tsx @@ -13,7 +13,7 @@ export default function Footer() { Pilates with Fadia

diff --git a/client/src/components/ui/logo.tsx b/client/src/components/ui/logo.tsx index ecb9afb..71d892a 100644 --- a/client/src/components/ui/logo.tsx +++ b/client/src/components/ui/logo.tsx @@ -3,9 +3,9 @@ import LogoImage from "../../assets/rectangular-logo.png"; export function Logo({ className = "", size = "regular" }: { className?: string, size?: "small" | "regular" | "large" }) { const sizeClasses = { - small: "h-24", /* twice the size */ - regular: "h-32", /* twice the size */ - large: "h-40", /* twice the size */ + small: "h-20", /* reduced by 20% */ + regular: "h-24", /* reduced by 20% */ + large: "h-32", /* reduced by 20% */ }; return (