We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1482365 commit dc0362aCopy full SHA for dc0362a
1 file changed
src/components/GifCard.astro
@@ -26,7 +26,7 @@ const sizeKB = Math.round(gif.size / 1024);
26
{
27
downloadable ? (
28
<a href={gif.src} download={`${gif.title}.gif`}>
29
- <div class={`h-50 md:h-100 ${force34 ? "aspect-3/4" : ""}`}>
+ <div class={`h-50 md:h-100 ${force34 ? "aspect-4/3" : ""}`}>
30
<Image
31
src={gif.image}
32
alt=""
@@ -39,7 +39,7 @@ const sizeKB = Math.round(gif.size / 1024);
39
</div>
40
</a>
41
) : (
42
43
44
45
0 commit comments