We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d6d05 commit 06332ccCopy full SHA for 06332cc
src/components/tools/ToolsPage.tsx
@@ -101,7 +101,7 @@ const ToolsPage: React.FC<ToolPageProps> = ({ page }) => {
101
}
102
103
return (
104
- <div className="flex w-full flex-col gap-2 px-0 pb-4 pt-8 md:px-4 lg:px-48">
+ <div className="flex w-full flex-col gap-2 px-0 py-4 md:px-4 lg:px-48 text-neutral-200">
105
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
106
{tools.map((tool) => (
107
<ToolCard key={tool.id} tool={tool} />
src/components/tools/ToolsPagination.tsx
@@ -52,7 +52,7 @@ export default function ToolsPagination({
52
53
54
55
- <Pagination>
+ <Pagination className="mt-6">
56
<PaginationContent>
57
{/* Previous Button */}
58
<PaginationItem>
0 commit comments