Hi guys,
I would like to make the transition for cart same as menu drawer. Cart drawer is not as smooth as menu drawer as well. I would appreciate your help.
Thanks
A user seeks to match their cart drawer’s transition animation to their menu drawer’s smoother effect.
Proposed Solution:
base.css file.styles_CartPreview__2scQR class with transform and visibility propertiesCurrent Status:
Hi guys,
I would like to make the transition for cart same as menu drawer. Cart drawer is not as smooth as menu drawer as well. I would appreciate your help.
Thanks
Hi @basicbastardco ,
Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:
.styles_CartPreview__2scQR {
transform: translate(100%);
visibility: hidden;
right: 0 !important;
transition: .4s !important;
}
.styles_CartPreview__right__V29QR.styles_active__7AzVD {
transform: translate(0);
visibility: visible;
}
it will use the same transition as Menu.
Hope it helps!
It worked however, on an actual phone it is not working well.