From 82e4a9d0f4ddbd84f153b469b64dd1c47d69f74c Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com> Date: Mon, 16 Jun 2025 22:40:28 +0200 Subject: [PATCH] feat(frontend): balance heading text (#952) --- frontend/src/styles/theme/_index.scss | 1 + frontend/src/styles/theme/typography.scss | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 frontend/src/styles/theme/typography.scss diff --git a/frontend/src/styles/theme/_index.scss b/frontend/src/styles/theme/_index.scss index 5ce534bbd..19945f5e0 100644 --- a/frontend/src/styles/theme/_index.scss +++ b/frontend/src/styles/theme/_index.scss @@ -8,5 +8,6 @@ @import "link-share"; @import "loading"; @import "flatpickr"; +@import "typography"; @import 'helpers'; @import 'navigation'; \ No newline at end of file diff --git a/frontend/src/styles/theme/typography.scss b/frontend/src/styles/theme/typography.scss new file mode 100644 index 000000000..4ba9936d7 --- /dev/null +++ b/frontend/src/styles/theme/typography.scss @@ -0,0 +1,8 @@ +h1, +h2, +h3, +h4, +h5, +h6 { + text-wrap: balance; +}