From d8f0493e22e1b4778853e1940ded16aaf0c1ccd1 Mon Sep 17 00:00:00 2001 From: SmartDever02 Date: Wed, 29 Oct 2025 19:14:28 -0700 Subject: [PATCH 1/2] feat: buttons cursor from default => pointer --- css/tailwind.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/tailwind.css b/css/tailwind.css index 5a8a4c2f15..fac9ee0f73 100644 --- a/css/tailwind.css +++ b/css/tailwind.css @@ -173,3 +173,7 @@ input:-webkit-autofill:focus { display: inline-block; vertical-align: middle; } + +button { + cursor: pointer; +} \ No newline at end of file From c7a0c44f8906b0de974d4ec12de5545398931262 Mon Sep 17 00:00:00 2001 From: SmartDever02 Date: Wed, 29 Oct 2025 19:24:38 -0700 Subject: [PATCH 2/2] feat: link hover color in blog page --- components/Card.tsx | 4 ++-- components/Header.tsx | 6 ++---- layouts/ListLayoutWithTags.tsx | 7 ++++++- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/components/Card.tsx b/components/Card.tsx index 1ae920e009..2c750fcd49 100644 --- a/components/Card.tsx +++ b/components/Card.tsx @@ -6,7 +6,7 @@ const Card = ({ title, description, imgSrc, href }) => (
{imgSrc && (href ? ( @@ -14,7 +14,7 @@ const Card = ({ title, description, imgSrc, href }) => ( {title} diff --git a/components/Header.tsx b/components/Header.tsx index 3378b043e0..316f0a0cc5 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -15,10 +15,8 @@ const Header = () => { return (
-
-
- -
+
+ {typeof siteMetadata.headerTitle === 'string' ? (
{siteMetadata.headerTitle} diff --git a/layouts/ListLayoutWithTags.tsx b/layouts/ListLayoutWithTags.tsx index bfbb3b7959..23e763bb40 100644 --- a/layouts/ListLayoutWithTags.tsx +++ b/layouts/ListLayoutWithTags.tsx @@ -44,6 +44,7 @@ function Pagination({ totalPages, currentPage }: PaginationProps) { Previous @@ -57,7 +58,11 @@ function Pagination({ totalPages, currentPage }: PaginationProps) { )} {nextPage && ( - + Next )}