From 429f2fccad5dae5c5cb7f290918f874e27b0dda0 Mon Sep 17 00:00:00 2001 From: qt-coder Date: Mon, 5 Jul 2021 21:35:09 +0800 Subject: [PATCH] Changed authbutton color from pink to teal --- components/AuthButton.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/AuthButton.js b/components/AuthButton.js index 1db14b1..e6e6433 100644 --- a/components/AuthButton.js +++ b/components/AuthButton.js @@ -11,10 +11,10 @@ export default function Page() { fontSize={'sm'} fontWeight={600} color={'white'} - bg={'pink.400'} + bg={'teal.400'} href={'#'} _hover={{ - bg: 'pink.300', + bg: 'teal.300', }} onClick={()=>signIn()}> Sign In @@ -26,10 +26,10 @@ export default function Page() { fontSize={'sm'} fontWeight={600} color={'white'} - bg={'pink.400'} + bg={'teal.400'} href={'#'} _hover={{ - bg: 'pink.300', + bg: 'teal.300', }} onClick={() => signOut()}> Sign Out