From 07babe2eb202b16cd266247eb6b1d81e90c665ce Mon Sep 17 00:00:00 2001 From: NanamiAdmin Date: Sat, 31 Jan 2026 15:04:22 +0800 Subject: [PATCH] style: fix avatar image scaling in subscription section Add CSS rules to ensure subscription avatars maintain proper aspect ratio and cover their container without distortion. --- css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/style.css b/css/style.css index 5b148cc..74c8b9b 100644 --- a/css/style.css +++ b/css/style.css @@ -245,6 +245,12 @@ body { overflow: hidden; } +.subscription-avatar img { + width: 100%; + height: 100%; + object-fit: cover; +} + .subscription-name { font-size: 14px; color: #ffffff;