Skip to content

Commit

Permalink
feat(gluwave): change order of bottom toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalhama committed Sep 26, 2024
1 parent 0f31031 commit e4c74bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gluwave/src/components/toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ export const Toolbar = ({ authenticated }: Props) => {

return (
<div className="fixed bottom-0 bg-white w-full flex p-4 gap-2 border-t-2 justify-center rounded-t-xl shadow-[0_0_25px] shadow-slate-300">
<BloodGlucoseDialog>
<CarbDialog>
<Button variant="ghost">
<Droplet />
<UtensilsCrossed />
</Button>
</BloodGlucoseDialog>
</CarbDialog>
<InsulinDialog>
<Button variant="ghost">
<Syringe />
</Button>
</InsulinDialog>
<CarbDialog>
<BloodGlucoseDialog>
<Button variant="ghost">
<UtensilsCrossed />
<Droplet />
</Button>
</CarbDialog>
</BloodGlucoseDialog>
</div>
)
}

0 comments on commit e4c74bc

Please sign in to comment.