feat: bigger home page connect button
This commit is contained in:
parent
880e456f94
commit
d97c571ed4
|
|
@ -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}
|
||||
/>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ export function MainLayout({
|
|||
>
|
||||
GitHub
|
||||
</UniLink>
|
||||
<ConnectButton />
|
||||
<ConnectButton size="base" />
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
|
|
|||
Loading…
Reference in New Issue