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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user