Refactor Cart UI to Enhance Responsiveness and User Experience

- Replaced CartSheet and CartSidebar components with a new CartResponsive component that adapts to screen size, providing a unified cart experience.
- Implemented responsive animations for the cart, allowing it to slide in from the right on desktop and from the bottom on mobile.
- Updated styles and layout in tailwind.css to support new animation effects for the cart component.
This commit is contained in:
Bastian Masanek
2025-11-05 03:09:44 +01:00
parent 1349f42f41
commit 808b62645f
6 changed files with 184 additions and 86 deletions

View File

@@ -2,5 +2,4 @@ export { default as CartItem } from './CartItem.vue'
export { default as CartSummary } from './CartSummary.vue'
export { default as CartEmpty } from './CartEmpty.vue'
export { default as CartFAB } from './CartFAB.vue'
export { default as CartSidebar } from './CartSidebar.vue'
export { default as CartSheet } from './CartSheet.vue'
export { default as CartResponsive } from './CartResponsive.vue'