feat: set default card size and scale values to their minimum in Cube Manager, Draft View, and Deck Builder.

This commit is contained in:
2025-12-18 01:19:11 +01:00
parent 12e60d42f3
commit d550bc3d04
5 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
# Work Plan - Set Default Slider Values to Minimum
## Request
Set the default value for card size sliders to their minimum setting across all views:
1. Cube Manager (Draft Management)
2. Draft View (Online Draft Pick)
3. Deck Builder
## Changes
- **CubeManager.tsx**: Changed default `cardWidth` from `140` to `100`.
- **DraftView.tsx**: Changed default `cardScale` from `0.7` to `0.5`.
- **DeckBuilderView.tsx**: Changed default `cardWidth` from `150` to `100`.
## Verification
- Verified that the new default values match the `min` attribute of the respective range inputs.
- Verified that no other sliders exist in the codebase.