fix image component height

This commit is contained in:
jeffvli
2025-11-18 23:03:09 -08:00
parent 4d6672f506
commit 1abb1afd01
+3 -2
View File
@@ -23,7 +23,7 @@
.loader { .loader {
width: 100%; width: 100%;
height: 100%; height: 100%;
aspect-ratio: 1 / 1; border-radius: var(--theme-radius-md);
} }
.image-container { .image-container {
@@ -39,14 +39,15 @@
justify-content: center; justify-content: center;
width: 100%; width: 100%;
height: 100%; height: 100%;
aspect-ratio: 1 / 1;
background-color: darken(var(--theme-colors-foreground), 40%); background-color: darken(var(--theme-colors-foreground), 40%);
border-radius: var(--theme-radius-md);
opacity: 0.3; opacity: 0.3;
} }
.skeleton { .skeleton {
width: 100%; width: 100%;
height: 100%; height: 100%;
border-radius: var(--theme-radius-md);
} }
.view-wrapper { .view-wrapper {