From f9b34408f2d237ccfc0a78f7197ed9b39fcf39b1 Mon Sep 17 00:00:00 2001 From: rijkvanzanten Date: Wed, 9 Aug 2023 11:26:46 -0400 Subject: [PATCH] Add inline card style --- components/Base/Card.vue | 23 +++++++++++++++++++---- types/schema/blocks/block-card.ts | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/components/Base/Card.vue b/components/Base/Card.vue index 6ac332f8..0485ee11 100644 --- a/components/Base/Card.vue +++ b/components/Base/Card.vue @@ -6,7 +6,7 @@ export interface BaseCardProps { to?: string; layout?: 'vertical' | 'horizontal'; aspect?: '16-9' | '1-1'; - imageSize?: 'icon' | 'cover'; + imageSize?: 'inline' | 'icon' | 'cover'; } withDefaults(defineProps(), { @@ -18,12 +18,15 @@ withDefaults(defineProps(), {