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

🎨style: add scale down up animation #985

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ export default function Home(): JSX.Element {
className="absolute object-contain opacity-10 size-full -z-10"
/>
<h2 className="font-bold font-zenMaruGothic text-2xl">
<Link href={SECRETARIAT.pathname} className="text-sky-400 underline">
<Link
href={SECRETARIAT.pathname}
className="block scale-down-up text-sky-400 underline"
>
事務局の想い
</Link>
</h2>
Expand Down
2 changes: 1 addition & 1 deletion app/partner/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function SponserPage(): JSX.Element {
<h2 className="font-bold font-zenMaruGothic text-3xl">
<Link
href={PARTNER.pathname + area.menu.pathname}
className={`underline ${area.color.text}`}
className={`block mx-auto scale-down-up underline w-fit ${area.color.text}`}
>
{area.menu.name}
</Link>
Expand Down
Loading