fix: add text overflow ellipsis to config section titles

Fixes #1728

Config section header titles were being truncated without visual
indication. Added standard CSS truncation to BOTH title classes:
- .config-section-hero__title (main section headers)
- .config-section-card__title (card headers)

Properties added:
- white-space: nowrap
- overflow: hidden
- text-overflow: ellipsis
This commit is contained in:
Robby
2026-01-25 11:30:56 +00:00
committed by Peter Steinberger
parent 8f3da653b0
commit 003fff067a

View File

@@ -413,6 +413,9 @@
font-size: 16px;
font-weight: 600;
letter-spacing: -0.01em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.config-section-hero__desc {
@@ -586,6 +589,9 @@
font-size: 17px;
font-weight: 600;
letter-spacing: -0.01em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.config-section-card__desc {