Files
my2/app/components/Cart/index.ts
Bastian Masanek 808b62645f 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.
2025-11-05 03:09:44 +01:00

6 lines
283 B
TypeScript

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 CartResponsive } from './CartResponsive.vue'