diff --git a/public/src/components/GottesdienstCard.vue b/public/src/components/GottesdienstCard.vue index 7f0a6fd..0e8e818 100644 --- a/public/src/components/GottesdienstCard.vue +++ b/public/src/components/GottesdienstCard.vue @@ -159,13 +159,13 @@ function getOwnMarkHint(): string { > {{ getOwnMarkIcon() }} - {{ gottesdienst.name !== "" ? gottesdienst.name : "Gottesdienst" }} + {{ formatWeekday(gottesdienst.date) }} {{ formatDay(gottesdienst.date) }}
- am {{ formatWeekday(gottesdienst.date) }} {{ formatDay(gottesdienst.date) }} + {{ gottesdienst.name !== "" ? gottesdienst.name : "Gottesdienst" }} um {{ formatTime(gottesdienst.date) }} Uhr Anwesenheit: {{ formatTime(gottesdienst.attendance) }}
@@ -307,6 +307,10 @@ function getOwnMarkHint(): string { } } + .day { + font-weight: 700; + } + .info { display: flex; flex-wrap: wrap;