From 62ace421e66e8a049d870f576dceaaf522ffeddc Mon Sep 17 00:00:00 2001 From: jeffvli Date: Tue, 18 Nov 2025 23:03:09 -0800 Subject: [PATCH] fix image component height --- src/shared/components/image/image.module.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/shared/components/image/image.module.css b/src/shared/components/image/image.module.css index ef3302729..d75a3115f 100644 --- a/src/shared/components/image/image.module.css +++ b/src/shared/components/image/image.module.css @@ -23,7 +23,7 @@ .loader { width: 100%; height: 100%; - aspect-ratio: 1 / 1; + border-radius: var(--theme-radius-md); } .image-container { @@ -39,14 +39,15 @@ justify-content: center; width: 100%; height: 100%; - aspect-ratio: 1 / 1; background-color: darken(var(--theme-colors-foreground), 40%); + border-radius: var(--theme-radius-md); opacity: 0.3; } .skeleton { width: 100%; height: 100%; + border-radius: var(--theme-radius-md); } .view-wrapper {