From 0848b4e7f01a5ef4aed2901e9660cc4e2a4b315e Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 9 Mar 2026 19:55:32 -0500 Subject: [PATCH] style: Double logo size to 5rem, increase brand title font by 30% to 1.95rem --- client/src/App.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/client/src/App.css b/client/src/App.css index a260bb8..5987487 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -27,7 +27,7 @@ gap: 0.75rem; color: var(--text-primary); font-weight: 700; - font-size: 1.5rem; + font-size: 1.95rem; /* +30% from 1.5rem */ text-decoration: none; transition: var(--transition); } @@ -36,10 +36,10 @@ color: var(--primary-light); } -/* Square logo: fixed equal width/height to match a 1:1 image */ +/* Square logo: doubled from 2.5rem to 5rem */ .brand-logo { - width: 2.5rem; - height: 2.5rem; + width: 5rem; + height: 5rem; object-fit: contain; object-position: center; display: block; @@ -51,8 +51,8 @@ display: flex; align-items: center; justify-content: center; - width: 2.5rem; - height: 2.5rem; + width: 5rem; + height: 5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: var(--radius); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); @@ -108,18 +108,18 @@ } .nav-brand { - font-size: 1.25rem; + font-size: 1.625rem; /* +30% from 1.25rem */ } - /* Scale square logo down on mobile */ + /* Scale square logo down on mobile (doubled from 2rem) */ .brand-logo { - width: 2rem; - height: 2rem; + width: 4rem; + height: 4rem; } .brand-icon { - width: 2rem; - height: 2rem; + width: 4rem; + height: 4rem; } .nav-links {