feat: bigger home page connect button

This commit is contained in:
DIYgod 2023-02-06 18:20:57 +00:00
parent 880e456f94
commit d97c571ed4
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View File

@ -134,12 +134,16 @@ export const ConnectButton: React.FC<{
<>
{isAllRead ? (
<BellIcon
className="w-5 h-5 text-zinc-500 cursor-pointer sm:hover:animate-buzz-out"
className={`${
size === "base" ? "w-6 h-6" : "w-5 h-5"
} text-zinc-500 cursor-pointer sm:hover:animate-buzz-out`}
onClick={showNotificationModal}
/>
) : (
<BellAlertIcon
className="w-5 h-5 text-accent cursor-pointer sm:hover:animate-buzz-out"
className={`${
size === "base" ? "w-6 h-6" : "w-5 h-5"
} text-accent cursor-pointer sm:hover:animate-buzz-out`}
onClick={showNotificationModal}
/>
)}

View File

@ -60,7 +60,7 @@ export function MainLayout({
>
GitHub
</UniLink>
<ConnectButton />
<ConnectButton size="base" />
</div>
</div>
</header>