feat: Implement 3D flip card preview with foil effects in Draft View and add hover preview control to StackView.
Some checks failed
Build and Deploy / build (push) Failing after 52s

This commit is contained in:
2025-12-17 18:35:57 +01:00
parent 2869c35885
commit 3936260861
7 changed files with 167 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
# Fix Draft UI Issues
## Task
Fix bugs in the Draft Pick UI related to the "Your Pool" section.
## Changes
- Modified `src/client/src/modules/draft/DraftView.tsx`:
- **Resize Handle Fix**: Updated the resize event listeners (`mousemove`, `mouseup`) to be attached to `document` instead of `window`. This ensures the resize action continues smoothly even if the mouse leaves the browser window or moves rapidly over iframes/other elements that might swallow events.
- **Remove Hover Effect**: Removed the `hover:-translate-y-10` class from the drafted card items in the bottom pool view. The cards will now remain stationary on hover, as requested.
## Outcome
- The pool resizing experience is now consistent and does not lose focus when dragging quickly.
- Cards in the "Your Pool" strip no longer jump up when hovered, providing a stable viewing experience.