fix: remove min-h-screen from layout
This commit is contained in:
parent
fc8c5947a0
commit
b512b29808
4 changed files with 6 additions and 7 deletions
|
@ -33,7 +33,4 @@ export default defineConfig({
|
|||
image: {
|
||||
service: passthroughImageService(),
|
||||
},
|
||||
experimental: {
|
||||
responsiveImages: true,
|
||||
},
|
||||
});
|
||||
|
|
|
@ -33,7 +33,9 @@ const currentPath = pathname.replace(/\/$/, "");
|
|||
);
|
||||
})
|
||||
}
|
||||
<Button href={`mailto:${SITE.EMAIL}`} link="Email" />
|
||||
<li>
|
||||
<Button href={`mailto:${SITE.EMAIL}`} link="Email" />
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
|
|
@ -5,7 +5,7 @@ import Link from "@components/Link.astro";
|
|||
|
||||
<section class="animate-reveal flex flex-col gap-6 opacity-0">
|
||||
<h1
|
||||
class="flex w-full flex-col lowercase text-start text-7xl leading-[1] font-medium tracking-[-2px] sm:tracking-[-4px]"
|
||||
class="flex w-full flex-col text-start text-7xl leading-[1] font-medium tracking-[-2px] lowercase sm:tracking-[-4px]"
|
||||
>
|
||||
<span class="text-nowrap">Troy Lusty</span>
|
||||
<span class="text-tertiary text-pretty">Digital Designer</span>
|
||||
|
@ -21,7 +21,7 @@ import Link from "@components/Link.astro";
|
|||
Want to chat?
|
||||
<Link
|
||||
href="mailto:hello@troylusty.com"
|
||||
class="underline lowercase underline-offset-2"
|
||||
class="lowercase underline underline-offset-2"
|
||||
>
|
||||
Send me a message
|
||||
</Link>
|
||||
|
|
|
@ -27,7 +27,7 @@ const { title, description, image, date, updated, tags } = Astro.props;
|
|||
tags={tags}
|
||||
/>
|
||||
<body
|
||||
class="bg-primary text-secondary items mx-auto my-0 flex min-h-screen w-full max-w-[65ch] flex-col justify-start gap-6 p-4 md:my-6"
|
||||
class="bg-primary text-secondary items mx-auto my-0 flex w-full max-w-[65ch] flex-col justify-start gap-6 p-4 md:my-6"
|
||||
>
|
||||
<Header />
|
||||
<main transition:animate="fade" class="flex flex-col gap-6">
|
||||
|
|
Loading…
Add table
Reference in a new issue