Skip to content

Commit 044444c

Browse files
committed
removed x gap from task times container as horizontal padding on the time wrapper deal with spacing already
1 parent bc8bcd9 commit 044444c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/components/task_item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export function TaskItem({
161161
</div>
162162

163163
{/* Task Times */}
164-
<div className="task-times-container flex flex-row flex-wrap items-start justify-start gap-x-8 gap-y-1">
164+
<div className="task-times-container flex flex-row flex-wrap items-start justify-start gap-y-1">
165165
{isEditing ? (
166166
<TimeInput times={draftTimes} setTimes={setDraftTimes} />
167167
) : item.times?.length > 0 ? (

0 commit comments

Comments
 (0)