Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: overflow white space while playing animation #13

Merged
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
6 changes: 3 additions & 3 deletions src/pages/contact/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import isdlogo from "../../assets/isd-logo.png";

<Layout title="Contact" description="Contact">
<main
class="min-h-screen w-full items-center justify-center bg-[#0F0F0F] px-[8%] py-7 lg:px-[3%] lg:py-12"
class="min-h-screen w-full items-center justify-center overflow-hidden bg-[#0F0F0F] px-[8%] py-7 lg:px-[3%] lg:py-12"
>
<p class="animate-sliding-left text-2xl font-bold text-white lg:text-4xl">
Contact
Expand All @@ -30,9 +30,9 @@ import isdlogo from "../../assets/isd-logo.png";
<p>Instagram</p>
</div>
<div
class="text-6xl font-bold tracking-[.64rem] text-white lg:text-8xl"
class="whitespace-pre-line text-6xl font-bold tracking-[.64rem] text-white lg:text-8xl"
>
Get In<br />Touch
{"Get In\nTouch"}
</div>
</div>
</div>
Expand Down