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: 🐞 (<EventPanel>) フォントサイズを修正 (#134) #135

Merged
merged 1 commit into from
Oct 25, 2024
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
4 changes: 2 additions & 2 deletions src/components/EventPanel.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const EventSlugs = (await getCollection('events'))

<ColoredContainer color="violet" class="max-w-[1250px] flex-col">
<div class="w-full flex justify-between items-center">
<ColoredHeading as="h3" class="text-3xl" text="イベント" color="violet" />
<ColoredHeading as="h3" class="text-4xl" text="イベント" color="violet" />
<p
class="text-lg font-Dela text-mauve-11 text-stroke-mauve-1 text-stroke-8 paint-sfm drop-shadow-bump shadow-mauve-6 hidden md:block"
class="text-2xl font-Dela text-mauve-11 text-stroke-mauve-1 text-stroke-8 paint-sfm drop-shadow-bump shadow-mauve-6 hidden md:block"
>
この時限りの演奏と催しを楽しもう
</p>
Expand Down