From 168392bf907070eb90a83f6d40a33778bcfb61ec Mon Sep 17 00:00:00 2001 From: isaacmaamouche Date: Mon, 22 Jan 2024 10:04:08 +0100 Subject: [PATCH] feat: remove fast transition on drawer --- packages/Drawer/src/styles.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/Drawer/src/styles.ts b/packages/Drawer/src/styles.ts index a02f7d3c34..e1d1557e63 100644 --- a/packages/Drawer/src/styles.ts +++ b/packages/Drawer/src/styles.ts @@ -70,7 +70,6 @@ export const Drawer = styled.divBox>( position: fixed; display: flex; flex-direction: column; - flex-direction: column; overflow: auto; opacity: 0; transition: medium; @@ -80,10 +79,6 @@ export const Drawer = styled.divBox>( opacity: 1; transform: translate(0, 0); } - - &[data-leave] { - transition: fast; - } ` )