bug fixes

This commit is contained in:
yohlo
2025-09-25 15:49:09 -05:00
parent 81329e4354
commit c0ef535001
15 changed files with 42 additions and 24 deletions

View File

@@ -23,14 +23,14 @@ const Sheet: React.FC<SheetProps> = ({ title, children, opened, onChange }) => {
onChange={onChange}
onClose={handleClose}
>
<ScrollArea
style={{ flex: 1 }}
<ScrollArea.Autosize
style={{ flex: 1, maxHeight: '75dvh' }}
scrollbarSize={8}
scrollbars="y"
type="scroll"
>
{children}
</ScrollArea>
</ScrollArea.Autosize>
</SheetComponent>
);
};