Skip to content

Commit e8ca893

Browse files
committed
fix: remove min-height on help text in aligned rows
The min-height: 1.4em on .form-text was reserving blank space after every input in paired rows even when no help text existed, creating excessive vertical gaps. Help text now renders at its natural size. Bump version to 0.63.5.
1 parent 67b0f66 commit e8ca893

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.63.5] - 2026-04-02
11+
12+
### Fixed
13+
- **Remove min-height on .form-text in aligned rows** — the `min-height: 1.4em`
14+
rule on help text elements was reserving blank space after every input in
15+
paired rows even when no help text existed, creating excessive vertical gaps.
16+
Help text now renders at its natural size.
17+
1018
## [0.63.4] - 2026-04-02
1119

1220
### Fixed

django_forms_workflows/static/django_forms_workflows/css/forms.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@
3737
margin-top: auto;
3838
}
3939

40-
/* 5. Help text sits after the input — reserve consistent space */
40+
/* 5. Help text sits after the input at its natural size */
4141
.row.fields-aligned-row > [class*="col-"] > .mb-3 > .form-text,
4242
.row.fields-aligned-row > .field-wrapper > .mb-3 > .form-text {
4343
flex-shrink: 0;
44-
min-height: 1.4em;
4544
}
4645

4746
/* ── Consistent field spacing ────────────────────────────────────────── */

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-forms-workflows"
3-
version = "0.63.4"
3+
version = "0.63.5"
44
description = "Enterprise-grade, database-driven form builder with approval workflows and external data integration"
55
license = "LGPL-3.0-only"
66
readme = "README.md"

0 commit comments

Comments
 (0)