Skip to content

Commit f3c802b

Browse files
committed
Made parameter type fields wider to fit more digits
1 parent 574583b commit f3c802b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Form/ParameterType.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
102102
'step' => 'any',
103103
'placeholder' => 'parameters.max.placeholder',
104104
'class' => 'form-control-sm',
105-
'style' => 'max-width: 12ch;',
105+
'style' => 'max-width: 25ch;',
106106
],
107107
]);
108108
$builder->add('value_min', ExponentialNumberType::class, [
@@ -113,7 +113,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
113113
'step' => 'any',
114114
'placeholder' => 'parameters.min.placeholder',
115115
'class' => 'form-control-sm',
116-
'style' => 'max-width: 12ch;',
116+
'style' => 'max-width: 25ch;',
117117
],
118118
]);
119119
$builder->add('value_typical', ExponentialNumberType::class, [
@@ -124,7 +124,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void
124124
'step' => 'any',
125125
'placeholder' => 'parameters.typical.placeholder',
126126
'class' => 'form-control-sm',
127-
'style' => 'max-width: 12ch;',
127+
'style' => 'max-width: 25ch;',
128128
],
129129
]);
130130
$builder->add('unit', TextType::class, [

0 commit comments

Comments
 (0)