Skip to content

Commit 86e1636

Browse files
author
Dominik Grenz
committed
Change some distances
1 parent d484fa4 commit 86e1636

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

personalization-webcomponents/src/components/ChecklistHeader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
:img="getChecklistIconByTitle(checklist.title)"
66
:imgAlt="checklist.title"
77
>
8-
<p style="padding-bottom: 18px">
8+
<p style="padding-bottom: 16px">
99
<b>Erstellungsdatum: </b
10-
>{{ props.checklist.lastUpdated.toLocaleString() }}
10+
>{{ props.checklist.lastUpdated.toLocaleString().split(",")[0] }}
1111
</p>
1212
<p>
1313
<b>Aufgaben: </b>
1414
<muc-chip
1515
v-if="todoCount"
16-
style="margin-right: 16px"
16+
style="margin-right: 8px"
1717
background-color="#FDD1AC"
1818
>
1919
{{ todoCount }} offen

personalization-webcomponents/src/util/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function getChecklistIconByTitle(checklistTitle: string) {
1010
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10482700.svg",
1111
"Ich manage eine Familie.":
1212
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10483310.svg",
13-
Einwanderung:
13+
"Einwanderung":
1414
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10483311.svg",
1515
}[checklistTitle];
1616
}

0 commit comments

Comments
 (0)