772 B
772 B
Mobile Card Size Slider
Status
- Locate the card size slider component (
CubeManagerandDraftView) - Analyze why it is hidden on small screens (
hiddenutility classes) - Modify layout to ensure it is visible on mobile
- Determine if layout adjustments are needed (Reduced width on
DraftView) - Verify implementation (Code applied)
Context
User reported that the card size adjustment bar is missing on small screens. The fix was applied to both the Cube Manager (pack review) and Draft View (live drafting).
Changes
- CubeManager.tsx: Removed
hidden sm:flexfrom the slider container. It is now alwaysflex. - DraftView.tsx: Removed
hidden md:flexand adjusted width tow-24 md:w-32to fit better on small screens.