Add margin top to workout start date input

This commit is contained in:
Peter Stockings
2024-04-11 18:42:14 +10:00
parent 32a81df82a
commit 910437010d

View File

@@ -7,7 +7,7 @@
Edit Edit
</a> </a>
{% else %} {% else %}
<div class="flex"> <div class="flex mt-2">
<div class="relative"> <div class="relative">
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none"> <div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none">
<svg aria-hidden="true" class="w-5 h-5 text-gray-500 dark:text-gray-400" fill="currentColor" <svg aria-hidden="true" class="w-5 h-5 text-gray-500 dark:text-gray-400" fill="currentColor"
@@ -18,7 +18,7 @@
</svg> </svg>
</div> </div>
<input type="date" <input type="date"
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 p-2.5 w-full" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 p-2.5 w-full"
name="start-date" value="{{ start_date }}" name="start-date" value="{{ start_date }}"
hx-put="{{ url_for('update_workout_start_date', person_id=person_id, workout_id=workout_id) }}"> hx-put="{{ url_for('update_workout_start_date', person_id=person_id, workout_id=workout_id) }}">
</div> </div>