Skip to content

Commit 128ac0a

Browse files
committed
revert(gluwave): carb list style
1 parent 94c12c6 commit 128ac0a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gluwave/src/app/(app-menu)/carbs/list/carbs-list.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Button } from '@/components/ui/button'
88
import { Progress } from '@/components/ui/progress'
99
import { Separator } from '@/components/ui/separator'
1010
import { Statistics } from '@/lib/sql_utils'
11-
import { addHours, parseISO, subHours } from 'date-fns'
11+
import { addHours, subHours } from 'date-fns'
1212
import { Pencil } from 'lucide-react'
1313
import { redirect } from 'next/navigation'
1414
import * as React from 'react'
@@ -48,13 +48,13 @@ export async function CarbsList({ params }: Props) {
4848
carb.timestamp.getTime() >= start.getTime() &&
4949
carb.timestamp.getTime() <= end.getTime()
5050
)
51-
.sort((a, b) => b.timestamp.getTime() - a.timestamp.getTime())
51+
.sort((a, b) => a.timestamp.getTime() - b.timestamp.getTime())
5252

5353
return (
5454
<>
5555
<PageDatePicker baseUrl="/carbs/list" date={date} />
56-
<div className="space-y-4 border bg-white max-w-5xl mx-auto rounded-md shadow p-2 mt-4">
57-
<div>
56+
<div className="p-2">
57+
<div className=" border bg-white max-w-5xl mx-auto rounded-md shadow p-2 mt-4">
5858
{carbs.map((carb, i, arr) => {
5959
const over = carb.observedCarbs > carb.carbs
6060

@@ -96,7 +96,7 @@ export async function CarbsList({ params }: Props) {
9696
/>
9797
)}
9898
</div>
99-
{arr.length - 1 !== i && <Separator />}
99+
{arr.length - 1 !== i && <Separator className="my-2" />}
100100
</div>
101101
)
102102
})}

0 commit comments

Comments
 (0)