Skip to content

Commit

Permalink
fix: BottomNavigationButtons=not-prose
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity committed Mar 26, 2024
1 parent 0695ce8 commit b7afdf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/app/src/components/BottomNavigationButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const BottomNavigationButtons: FC<{ showPrev?: boolean }> = ({ showPrev =
}

return (
<div className="flex gap-6">
<div className="not-prose flex gap-6">
{showPrev && leftNeighbor != null && <BottomNavigationButton neighbor={leftNeighbor} dir="prev" />}
{rightNeighbor != null && <BottomNavigationButton neighbor={rightNeighbor} dir="next" />}
</div>
Expand Down

0 comments on commit b7afdf6

Please sign in to comment.