Skip to content

Commit

Permalink
hotfix: flex-1 request form avail
Browse files Browse the repository at this point in the history
7 minutes
  • Loading branch information
c0repwn3r committed Aug 20, 2024
1 parent 60029e2 commit 99ddc1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/(hq)/[id]/training/RequestForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<Form.Field
{form}
name="availability[{i}].start.hour"
class="flex flex-col">
class="flex flex-1 flex-col">
<Form.Control let:attrs>
<Form.Label>From</Form.Label>
<Input
Expand All @@ -118,7 +118,7 @@
<Form.Field
{form}
name="availability[{i}].start.minute"
class="flex flex-col">
class="flex flex-1 flex-col">
<Form.Control let:attrs>
<Form.Label>(MM)</Form.Label>
<Input
Expand All @@ -131,7 +131,7 @@
<Form.Field
{form}
name="availability[{i}].end.hour"
class="ml-2 flex flex-col">
class="ml-2 flex flex-1 flex-col">
<Form.Control let:attrs>
<Form.Label>To</Form.Label>
<Input
Expand All @@ -145,7 +145,7 @@
<Form.Field
{form}
name="availability[{i}].end.minute"
class="flex flex-col">
class="flex flex-1 flex-col">
<Form.Control let:attrs>
<Form.Label>(MM)</Form.Label>
<Input
Expand Down

0 comments on commit 99ddc1e

Please sign in to comment.