Remove padding to make time selectors same height as date selector

This commit is contained in:
2025-11-26 13:58:25 +01:00
parent 330b8fddb3
commit 23d067fffe
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@
{{ form_widget(edit_form.date.time, {
attr: {
class: 'form-control',
style: 'flex: 0 0 200px; max-width: 200px; white-space: nowrap;'
style: 'flex: 0 0 200px; max-width: 200px; white-space: nowrap; padding: 0;'
}
}) }}
</div>

View File

@@ -30,7 +30,7 @@
{{ form_widget(form.date.time, {
attr: {
class: 'form-control',
style: 'flex: 0 0 200px; max-width: 200px; white-space: nowrap;'
style: 'flex: 0 0 200px; max-width: 200px; white-space: nowrap; padding: 0;'
}
}) }}
</div>