π Bug Report
Description
Two related layout issues observed in the right sidebar:
-
Sidebar is not scrollable β The right sidebar has a lot of content (multiple aspect ratio options, FIT/FILL buttons, etc.) but there is no scrollbar, causing content to extend beyond the viewport with no way to access it properly.
-
Unbalanced layout when no video is loaded β The left panel is completely empty (no video uploaded yet) but the right sidebar continues to grow vertically. This creates a visually broken layout where the right side is overloaded while the left side is blank.
Steps to Reproduce
- Open https://reframe-lilac.vercel.app/
- Do NOT upload any video
- Scroll down on the right sidebar β observe it is not independently scrollable
- Notice the left panel is empty while the right sidebar extends far below
Expected Behavior
- The right sidebar should be independently scrollable (
overflow-y: auto or scroll)
- The sidebar height should be constrained to the viewport height
- Optionally, sidebar content could be collapsed or disabled until a video is loaded
Screenshots
Suggested Fix
/* Make sidebar independently scrollable */
.sidebar {
height: 100vh;
overflow-y: auto;
position: sticky;
top: 0;
}
Environment
- Browser: Chrome
- OS: Windows 11
Labels
bug ui layout good first issue
π Bug Report
Description
Two related layout issues observed in the right sidebar:
Sidebar is not scrollable β The right sidebar has a lot of content (multiple aspect ratio options, FIT/FILL buttons, etc.) but there is no scrollbar, causing content to extend beyond the viewport with no way to access it properly.
Unbalanced layout when no video is loaded β The left panel is completely empty (no video uploaded yet) but the right sidebar continues to grow vertically. This creates a visually broken layout where the right side is overloaded while the left side is blank.
Steps to Reproduce
Expected Behavior
overflow-y: autoorscroll)Screenshots
Suggested Fix
Environment
Labels
buguilayoutgood first issue