Skip to content

Commit

Permalink
Update header images
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Dec 6, 2024
1 parent a51a21a commit cdd1609
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/buttons/FormButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function FormButton({ className, ...props }: ComponentProps<typeof Button
return (
<Button
className={clsx(
'flex items-center justify-between rounded-lg border border-primary-300 px-2 py-1.5 text-sm',
'flex items-center justify-between rounded-lg border border-primary-300 px-2 py-1.5 text-sm hover:bg-gray-50',
className,
)}
{...props}
Expand Down
4 changes: 2 additions & 2 deletions src/components/nav/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Link from 'next/link';
import { ConnectWalletButton } from '../../features/wallet/ConnectWalletButton';
import Logo from '../../images/logos/app-logo.svg';
import Name from '../../images/logos/app-name.svg';
import Title from '../../images/logos/app-title.svg';
import Title from '../../images/logos/app-title.png';

export function Header() {
return (
Expand All @@ -12,7 +12,7 @@ export function Header() {
<Link href="/" className="flex items-center py-2">
<Image src={Logo} width={24} alt="" />
<Image src={Name} width={130} alt="" className="ml-2 mt-0.5 hidden sm:block" />
<Image src={Title} width={210} alt="" className="ml-2 mt-0.5 pb-px" />
<Image src={Title} width={80} alt="" className="ml-2 mt-0.5" />
</Link>
<div className="flex flex-col items-end gap-2 md:flex-row-reverse md:items-start">
<ConnectWalletButton />
Expand Down
2 changes: 1 addition & 1 deletion src/images/logos/app-name.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/app-title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/images/logos/app-title.svg

This file was deleted.

0 comments on commit cdd1609

Please sign in to comment.