Skip to content

[UI Bug] Right sidebar overflows without scroll and layout breaks when no video is loadedΒ #1514

@tharunika-19

Description

@tharunika-19

πŸ› Bug Report

Description

Two related layout issues observed in the right sidebar:

  1. 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.

  2. 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

  1. Open https://reframe-lilac.vercel.app/
  2. Do NOT upload any video
  3. Scroll down on the right sidebar β€” observe it is not independently scrollable
  4. 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

Image

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

Metadata

Metadata

Assignees

Labels

bugSomething isn't working correctlytype:bugBug fixtype:designUI/UX design

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions