Skip to content

[Good First Issue] Add disabled state styling to Export button when no file is selected #235

@magic-peach

Description

@magic-peach

Overview

The Export button should have clear visual disabled styling when no file is loaded, so users understand why they can't click it.

Task

In VideoEditor.tsx:

<button
  disabled={!file || status !== 'idle'}
  className={`... ${
    !file ? 'opacity-40 cursor-not-allowed' : 'hover:opacity-90'
  }`}
  aria-disabled={!file}
>
  Export
</button>

Acceptance Criteria

  • Button visually greyed out when no file loaded
  • cursor-not-allowed shown on hover when disabled
  • aria-disabled set correctly

Estimated effort: 15 minutes

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions