UI: refine typography, restore justification and prevent word cutting

This commit is contained in:
2026-05-10 13:56:28 +02:00
parent f64b8ba53c
commit c6c6a05c47

View File

@@ -26,12 +26,18 @@ body {
}
.prose {
text-align: left;
hyphens: none;
word-break: normal;
text-align: justify;
text-justify: inter-word;
hyphens: none !important;
word-break: normal !important;
overflow-wrap: break-word;
}
.prose p {
margin-bottom: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
hyphens: none !important;
}