Skip to content

Commit

Permalink
fix: drawer prod transition
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Dec 23, 2023
1 parent ee7b1eb commit ecb825e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/containers/Modals/CloudModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,13 @@ export const CloudModal: React.FC<ModalProps> = ({ opened, onClose }) => {
);

return (
<Drawer title="Saved On The Cloud" opened={opened} size="xl" onClose={onClose}>
<Drawer
title="Saved On The Cloud"
opened={opened}
size="xl"
onClose={onClose}
transitionProps={{ duration: 300, timingFunction: "ease", transition: "slide-right" }}
>
{data && (
<Flex gap="md">
<Paper my="lg" withBorder radius="md" p="xs" w="100%">
Expand Down

0 comments on commit ecb825e

Please sign in to comment.