From 113e344ac455cdaf2f08eab3bbe08d27877090a6 Mon Sep 17 00:00:00 2001 From: kscheidecker Date: Thu, 6 Mar 2025 15:55:09 +0100 Subject: [PATCH] width test --- assets/css/screen.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/screen.css b/assets/css/screen.css index e1155c5..ad36eae 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -2814,11 +2814,15 @@ figcaption a { align-items: center; justify-content: center; margin-bottom: 100px; + height: 60px; } .gh-footer-sph-logo a img { - width: auto; height: 50px; + width: auto; + max-width: 100%; /* Prevents it from getting larger than its container */ + object-fit: contain; /* Ensures the image scales while maintaining its aspect ratio */ + }