From ded6a26ad9d4743de01551012d9ab27403fe6003 Mon Sep 17 00:00:00 2001 From: FionaDmello <40391218+FionaDmello@users.noreply.github.com> Date: Tue, 1 Apr 2025 13:52:27 +0200 Subject: [PATCH] added a max-height on the images in the landing page with an aspect to maintain --- src/components/HomepageFeatures/styles.module.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/HomepageFeatures/styles.module.css b/src/components/HomepageFeatures/styles.module.css index e3b130c5..aeb0a5b9 100644 --- a/src/components/HomepageFeatures/styles.module.css +++ b/src/components/HomepageFeatures/styles.module.css @@ -6,6 +6,7 @@ } .featureSvg { - height: 200px; - width: 200px; + max-height: 200px; + max-width: 200px; + aspect-ratio: 1/1; } -- GitLab