From 0d923d15c869ae572e46684c1a784ea4506e88b6 Mon Sep 17 00:00:00 2001 From: Johnson Mao Date: Sun, 12 Nov 2023 16:18:40 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20add=20button=20cursor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/[lang]/Header.tsx | 2 +- tailwind.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/[lang]/Header.tsx b/src/app/[lang]/Header.tsx index 5d59916..a384d47 100644 --- a/src/app/[lang]/Header.tsx +++ b/src/app/[lang]/Header.tsx @@ -105,7 +105,7 @@ function Header({ avatar, children, scrollThreshold = 100 }: HeaderProps) {
diff --git a/tailwind.config.js b/tailwind.config.js index ce060c1..1c9bec6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -52,7 +52,7 @@ const tailwindcssConfig = { require('@tailwindcss/typography'), plugin(({ addBase, addComponents, addUtilities, theme }) => { addBase({ - a: { + 'a, button': { cursor: theme('cursor.pointer'), }, });