diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/header.tsx | 2 | ||||
| -rw-r--r-- | components/map.tsx | 2 | ||||
| -rw-r--r-- | components/noise.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/components/header.tsx b/components/header.tsx index 79cb0c0..afc2a99 100644 --- a/components/header.tsx +++ b/components/header.tsx @@ -7,7 +7,7 @@ export function Header() { <header className="mx-auto flex w-full max-w-[var(--site-width)] items-center justify-between gap-5 py-4"> <div className="flex items-center gap-6"> <Link href="/" className="font-bold text-xl"> - <PawPrint className="hover:rotate-12 transition-transform" /> + <PawPrint className="hover:rotate-12 transition-transform h-5 w-5" /> </Link> <nav className="flex gap-6"> <Link diff --git a/components/map.tsx b/components/map.tsx index 8584c76..d0f9557 100644 --- a/components/map.tsx +++ b/components/map.tsx @@ -23,7 +23,7 @@ export default function Map() { return ( <div - className="relative h-[350px] rounded-xl overflow-hidden border border-border z-0 bg-background" + className="relative h-[350px] -mx-6 sm:mx-0 sm:rounded-xl overflow-hidden sm:border z-0 bg-background" style={{ maskImage: "linear-gradient(to bottom, black 50%, transparent 100%)", WebkitMaskImage: "linear-gradient(to bottom, black 50%, transparent 100%)", diff --git a/components/noise.tsx b/components/noise.tsx index 3e29b66..1d37ba4 100644 --- a/components/noise.tsx +++ b/components/noise.tsx @@ -2,7 +2,7 @@ export function Noise() { return ( <div - className="fixed top-0 left-0 w-full h-full pointer-events-none z-50 noise" + className="fixed inset-0 pointer-events-none z-50 noise" /> ); } |
