Skip to content

Commit

Permalink
Re-add fixed header and blend mode to logo (#9)
Browse files Browse the repository at this point in the history
* re-add fixed header and blend mode to logo

* invert logo image
  • Loading branch information
ChangoMan authored Oct 30, 2024
1 parent eaaf76b commit 6c734a5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ import { RainbowKitCustomConnectButton } from "~~/components/scaffold-eth";
*/
export const Header = () => {
return (
<header className="container mx-auto">
<div className="p-6 lg:p-8 flex flex-wrap items-center justify-between border-l border-r border-black">
<Image className="w-40 md:w-auto" src="client-logo.svg" alt="logo" width={260} height={78} />
<RainbowKitCustomConnectButton />
<header className="container mx-auto pb-24 md:pb-32 lg:pb-36 border-l border-r border-black">
<div className="fixed container z-10 mix-blend-difference p-6 lg:p-8">
<Image className="w-40 md:w-auto invert" src="client-logo.svg" alt="logo" width={260} height={78} />
</div>
<div className="fixed container z-10 p-6 lg:p-8 flex justify-end">
<div className="mt-2">
<RainbowKitCustomConnectButton />
</div>
</div>
</header>
);
Expand Down

0 comments on commit 6c734a5

Please sign in to comment.