fix: improve event page typography - remove pre-line, style h3/ul
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-03-12 09:43:25 +01:00
parent 11149f746a
commit 9fba103729

View File

@ -55,10 +55,9 @@
.event-description {
margin-bottom: var(--spacing-xl);
line-height: 1.8;
line-height: 1.7;
color: var(--text-primary);
font-size: 1.05rem;
white-space: pre-line;
}
.event-description p {
@ -69,9 +68,19 @@
margin-bottom: 0;
}
.event-description p,
.event-description div {
white-space: normal;
.event-description h3 {
font-size: var(--font-size-lg);
margin: var(--spacing-lg) 0 var(--spacing-sm);
color: var(--text-primary);
}
.event-description ul {
margin: 0 0 var(--spacing-md) var(--spacing-lg);
padding: 0;
}
.event-description li {
margin-bottom: var(--spacing-xs);
}
.event-callout {