Skip to content

Commit

Permalink
change lineheight milestones
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Nov 10, 2024
1 parent 50cbc55 commit adc9ac5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/language/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const translations = {
principles: {
header: "Our principles",
part1Header: "Privacy By Design",
part1Text: "It is important to us that you maintain control over your data. That's why your data remains on your end device.",
part1Text: "It is important to us that you maintain control over your data. That's why your data remains on your device.",
part2Header: "Open Data",
part2Text: "Important information for citizens about their benefits is all too often difficult to find. We make our catalogue of conditions for social benefits publicly available.",
part3Header: "User Centric Design",
Expand Down Expand Up @@ -375,7 +375,7 @@ const translations = {
},
gitCommits: {
title: "Github Commits",
description: "Unsere Entwicklungsarbeit ist vollständig Open Source und wird auf GitHub erfasst. Du kannst unsere letzten fünf Commits hier einsehen oder mehr auf unserer GitHub-Organisationsseite entdecken.",
description: "Unsere Entwicklungsarbeit ist Open Source und wird auf GitHub erfasst. Du kannst unsere letzten fünf Commits hier einsehen oder mehr auf unserer GitHub-Organisationsseite entdecken.",
listTitle: "Die letzten 5 Commits",
today: "Heute",
yesterday: "Gestern",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const MilestoneElement = ({ milestone, showBorderBottom }) => {
<ReactMarkdown
components={{
p: ({ node, ...props }) => (
<p {...props} style={{ margin: 0 }} />
<p {...props} style={styles.description} />
),
}}
>
Expand All @@ -48,6 +48,9 @@ const styles = {
fontWeight: '300',
color: globalStyles.colorDarkGrey,
textAlign: 'right'
},
description: {
lineHeight: '1.5'
}
}

Expand Down

0 comments on commit adc9ac5

Please sign in to comment.