Fix roadheight field width (#10175)

Recent versions of Firefox give input fields a greater intrinsic width that causes roadheight fields to overflow the container. Constrain these input fields to an initial width of zero; they’ll grow proportionally as part of the flexbox.
This commit is contained in:
Minh Nguyễn
2024-03-27 06:30:42 -07:00
committed by GitHub
parent 31f5477e60
commit a38d7a1b8d
2 changed files with 3 additions and 0 deletions

View File

@@ -2055,6 +2055,7 @@ input.date-selector {
.form-field-input-roadheight input.roadheight-secondary-number,
.form-field-input-roadspeed input.roadspeed-number {
flex-basis: 0;
width: 0;
}
.form-field-input-roadheight input.roadheight-unit,
.form-field-input-roadheight input.roadheight-secondary-unit {