Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/styles/responsive-fix.css
Original file line number Diff line number Diff line change
Expand Up @@ -754,3 +754,19 @@ body,
scroll-behavior: smooth;
}
}

/* ═══════════════════════════════════════════════════════════════════
Round-24 user report — "resize-stage / drag-stage ne sont pas
responsive et dépassent de la page".
Reproduced : dragging the corner grip pushed the player to its
720 px ceiling REGARDLESS of the stage width — on a 768 px tablet
that is +20 px past the stage card and +10 px past the viewport.
The lib is container-aware (ResizeObserver-driven chrome), so a CSS
max-width cleanly caps the inline width the drag writes : the box
clamps, the chrome follows, every breakpoint stays inside its
stage. Applies at ALL widths (the old clamp only covered ≤720 px).
═══════════════════════════════════════════════════════════════════ */
.drag-stage .mp,
.resize-stage .mp {
max-width: 100% !important;
}
Loading