From 533d2e5b2cefc7f2e7056cd74f75aab952daa5f6 Mon Sep 17 00:00:00 2001 From: Thibaud Dauce Date: Thu, 26 Feb 2026 16:01:52 +0100 Subject: [PATCH] fix: reuse horizontal card image aspect ratio --- datagouv-components/src/components/ObjectCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datagouv-components/src/components/ObjectCard.vue b/datagouv-components/src/components/ObjectCard.vue index 939421f02..6c67db6e7 100644 --- a/datagouv-components/src/components/ObjectCard.vue +++ b/datagouv-components/src/components/ObjectCard.vue @@ -35,7 +35,7 @@ const props = withDefaults(defineProps<{ const mediaContainerClass = computed(() => { if (props.mediaSize === 'lg') { - return 'w-[240px] h-[160px]' + return 'w-[225px] h-[120px]' } return 'p-2' })