From a130d302019bc003479723542465a00acdbcc4ba Mon Sep 17 00:00:00 2001 From: summersamara Date: Sat, 7 Oct 2023 18:25:55 +0200 Subject: [PATCH] Fix issue#7: resize start-time badge in Event card Closes #7 https://git.potsda.mn/potsda.mn/mobilizon/issues/7 --- src/components/Event/StartTimeIcon.vue | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/components/Event/StartTimeIcon.vue b/src/components/Event/StartTimeIcon.vue index 406366fd9..77fd04869 100644 --- a/src/components/Event/StartTimeIcon.vue +++ b/src/components/Event/StartTimeIcon.vue @@ -30,19 +30,15 @@ const time = computed(() => dateObj.value.toLocaleTimeString(undefined, { hour: "2-digit", minute: "2-digit" }) ); -const smallStyle = computed(() => (props.small ? "1.2" : "2")); +const smallStyle = computed(() => (props.small ? "0.9" : "2"));