Skip to content

Commit

Permalink
Nick:
Browse files Browse the repository at this point in the history
  • Loading branch information
nickscamara committed May 26, 2024
1 parent e87c71b commit 548a48f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,15 @@ export default function Home() {
}}
>
<main className="relative flex h-[95vh] flex-col items-center justify-center bg-transparent bg-opacity-80">
<Graph padding={padding} theme={theme} chartRef={chartRef} />

<Menu
padding={padding}
setPadding={setPadding}
theme={theme}
setTheme={setTheme}
handleExport={handleExport}
/>
<Graph padding={padding} theme={theme} chartRef={chartRef} />
<div className="absolute bottom-0 left-0 right-0 p-4 text-white text-center font-light">
Made by{" "}
<a
Expand Down
2 changes: 1 addition & 1 deletion src/components/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Menu({
handleExport: () => void;
}) {
return (
<div className="absolute bottom-20 left-1/2 transform -translate-x-1/2 flex items-end space-x-4 p-4 rounded-lg bg-white border border-gray-500/25 shadow-xl ">
<div className="absolute bottom-14 left-1/2 transform -translate-x-1/2 flex items-end space-x-4 p-4 rounded-lg bg-white border border-gray-500/25 shadow-xl ">
<div className="flex flex-col items-start justify-start">
<span className="text-zinc-700 text-sm">Theme</span>
<Select
Expand Down

0 comments on commit 548a48f

Please sign in to comment.