From 3d25316fe3c5307c4c423b3300c8753fae68da00 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 4 Sep 2026 17:55:03 +0200 Subject: [PATCH] Event header: Fix wrapping of date in h2 header (Z#23245589) This was already correct if the header was a h1 --- src/pretix/static/pretixpresale/scss/_theme.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pretix/static/pretixpresale/scss/_theme.scss b/src/pretix/static/pretixpresale/scss/_theme.scss index 4a1ffc6200..359bf08003 100644 --- a/src/pretix/static/pretixpresale/scss/_theme.scss +++ b/src/pretix/static/pretixpresale/scss/_theme.scss @@ -75,6 +75,9 @@ h3, .h3 { h2.content-header { margin-top: 0; + small { + white-space: nowrap; + } } @media (max-width: $screen-xs-max) { @@ -85,6 +88,7 @@ h2.content-header { } h2.content-header small { display: block; + white-space: normal; } } @media (min-width: $screen-sm-min) {