Skip to content

Commit

Permalink
Reduce padding on ExplorerPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
marius-mather committed Oct 1, 2024
1 parent e4c4797 commit 5d536eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/explore/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import { yupResolver } from "@hookform/resolvers/yup";
import Link from "next/link";
import PlotTitle from "@/app/_components/PlotTitle";
import { NoPaddingCardTheme } from "@/app/_components/ScoreWidget";

export default function Explore() {
// NOTE: not using form context/form provider here as we use it
Expand Down Expand Up @@ -38,7 +39,7 @@ export default function Explore() {
<PlotTitle>Filters</PlotTitle>
<ExplorerForm form_return={form} />
</Card>
<Card className="min-w-96">
<Card className="min-w-96" theme={NoPaddingCardTheme}>
<ExplorerPlot form_return={form} />
</Card>
</div>
Expand Down

0 comments on commit 5d536eb

Please sign in to comment.