Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/global/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function Header({ showMarquee = true }: { showMarquee?: boolean }) {
</Link>
<button
id="connectButton"
className="text-center brutalborder cursor-pointer block p-1 sm:py-2 sm:px-4 bg-white text-black font-bold text-sm lg:text-lg hover:invert h-full"
className="text-center brutalborder cursor-pointer block p-1 sm:py-2 sm:px-4 bg-white text-black font-bold text-sm lg:text-lg hover:invert h-full md:mr-4"
onClick={open}
>
{isConnected ? utils.shortenAddress(address ?? "") : "Connect"}
Expand Down
2 changes: 1 addition & 1 deletion src/components/global/peanutMan/peanutMan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function PeanutMan({ type }: { type: string }) {
return (
<img
src={peanutmanSvg.src}
className="w-2/3 sm:w-1/2 scale-100 absolute z-index-100 -bottom-40 -left-32 sm:-bottom-48 sm:-left-32 md:-bottom-56 md:-left-48 2xl:-bottom-80 2xl:-left-80 2xl:-mb-24 2xl:-ml-32 hidden md:block"
className="w-2/3 sm:w-1/2 scale-100 absolute z-index-100 -bottom-40 -left-32 sm:-bottom-48 sm:-left-32 md:-bottom-56 md:-left-48 2xl:-bottom-80 2xl:-left-80 2xl:-mb-4 2xl:-ml-8 hidden md:block"
/>
);
}
Expand Down