From a377061da05fcc755990f4970eb51e0ec52682a3 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 25 Aug 2024 20:27:43 -0500 Subject: [PATCH] fix: tweak max image size for full logo on home, login pages as it happens these are the same dimensions for the default logo image. they seem standard but i don't know much about that.. --- src/wuttaweb/templates/auth/login.mako | 4 ++-- src/wuttaweb/templates/home.mako | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wuttaweb/templates/auth/login.mako b/src/wuttaweb/templates/auth/login.mako index 7c1d846..0235885 100644 --- a/src/wuttaweb/templates/auth/login.mako +++ b/src/wuttaweb/templates/auth/login.mako @@ -21,8 +21,8 @@ justify-content: center; } .wutta-logo img { - max-height: 350px; - max-width: 800px; + max-height: 480px; + max-width: 640px; } diff --git a/src/wuttaweb/templates/home.mako b/src/wuttaweb/templates/home.mako index e387227..46d80cd 100644 --- a/src/wuttaweb/templates/home.mako +++ b/src/wuttaweb/templates/home.mako @@ -21,8 +21,8 @@ justify-content: center; } .wutta-logo img { - max-height: 350px; - max-width: 800px; + max-height: 480px; + max-width: 640px; }