fix(SW-2621): Breaking too long words on heading inside destination city pages

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-05-19 09:20:16 +00:00
parent 636b92aac5
commit e3a0b281f5

View File

@@ -7,7 +7,11 @@
.heading { .heading {
color: var(--Text-Heading); color: var(--Text-Heading);
overflow-wrap: break-word;
word-break: break-word;
hyphens: auto;
} }
.text { .text {
color: var(--Text-Default); color: var(--Text-Default);
} }