Skip to content

Commit

Permalink
fixes header alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
ctate committed May 21, 2024
1 parent 57d9f44 commit c7775bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions platforms/web/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function Content() {
}, [cursorVisible]);

return (
<AppContextProvider>
<>
<Header />
<div
className={classNames(
Expand Down Expand Up @@ -193,7 +193,7 @@ function Content() {
<WebcamSwitcher onSnap={(imageUrl) => setImageUrl(imageUrl)} />
)}
<audio ref={audioRef} />
</AppContextProvider>
</>
);
}

Expand Down
2 changes: 1 addition & 1 deletion platforms/web/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Header() {
const [showPopover, setShowPopover] = useState(false);

return (
<header className="flex justify-center p-4">
<header className="fixed flex justify-center p-4 left-0 right-0 top-0">
<button
className="flex gap-2 items-center"
onClick={() => setShowPopover(!showPopover)}
Expand Down

0 comments on commit c7775bd

Please sign in to comment.