Skip to content

Commit 06332cc

Browse files
committed
Tools: colors fixed, layout issues fixed
1 parent c5d6d05 commit 06332cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/tools/ToolsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const ToolsPage: React.FC<ToolPageProps> = ({ page }) => {
101101
}
102102

103103
return (
104-
<div className="flex w-full flex-col gap-2 px-0 pb-4 pt-8 md:px-4 lg:px-48">
104+
<div className="flex w-full flex-col gap-2 px-0 py-4 md:px-4 lg:px-48 text-neutral-200">
105105
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
106106
{tools.map((tool) => (
107107
<ToolCard key={tool.id} tool={tool} />

src/components/tools/ToolsPagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function ToolsPagination({
5252
}
5353

5454
return (
55-
<Pagination>
55+
<Pagination className="mt-6">
5656
<PaginationContent>
5757
{/* Previous Button */}
5858
<PaginationItem>

0 commit comments

Comments
 (0)