responsive design and bug fixes

This commit is contained in:
Carl-Gerhard Lindesvärd
2023-11-04 10:01:22 +01:00
parent 13618d1fd4
commit f5670253bc
51 changed files with 992 additions and 336 deletions

View File

@@ -1,13 +1,17 @@
import { Button } from '@/components/ui/button';
import { SheetClose } from '@/components/ui/sheet';
import { ReportBreakdowns } from './ReportBreakdowns';
import { ReportEvents } from './ReportEvents';
import { ReportSaveButton } from './ReportSaveButton';
export function ReportSidebar() {
return (
<div className="flex flex-col gap-4 p-4">
<div className="flex flex-col gap-8">
<ReportEvents />
<ReportBreakdowns />
<ReportSaveButton />
<SheetClose asChild>
<Button>Done</Button>
</SheetClose>
</div>
);
}