Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Footer from "@/components/Footer";

export default function Home() {
return (
<>
<div className="min-h-screen flex flex-col bg-[var(--bg)]">
<a
href="https://github.com/magic-peach/reframe"
target="_blank"
Expand All @@ -14,11 +14,11 @@ export default function Home() {
⭐ Star on GitHub
</a>

<main id="main-content" tabIndex={-1}>
<main id="main-content" tabIndex={-1} className="flex-1">
<VideoEditor />
</main>

<Footer />
</>
</div>
);
}
2 changes: 1 addition & 1 deletion src/components/VideoEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ return () => {
}, [videoSrc]);

return (
<div className="min-h-screen relative flex flex-col" style={{ background: "var(--bg)" }}>
<div className="relative flex flex-col" style={{ background: "var(--bg)" }}>
<ExportOverlay
status={status}
progress={progress}
Expand Down