From dd900c89a67775749cbcfa74657ace4fa797f119 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 6 Jun 2026 15:30:50 +0300 Subject: [PATCH] Add aspect-ratio to team page avatar --- app/features/team/team.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/features/team/team.module.css b/app/features/team/team.module.css index 20e383861..d097bd624 100644 --- a/app/features/team/team.module.css +++ b/app/features/team/team.module.css @@ -77,6 +77,9 @@ } & img { + width: 100%; + aspect-ratio: 1 / 1; + object-fit: cover; border-radius: var(--radius-avatar); } }