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

Services v2 #118

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix(services): make services titles smaller
  • Loading branch information
Akeboshiwind committed Mar 18, 2024
commit 15896e734d850f0328390f4dd5e3ceb0b8f92ae3
2 changes: 1 addition & 1 deletion src/components/services/Service.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { title } = Astro.props;
---
<div class="grid grid-cols-1 md:grid-cols-2 py-20 gap-10 md:gap-20">
<div class="flex flex-col gap-4">
<h1 class="text-6xl">{title}</h1>
<h1 class="text-3xl">{title}</h1>
<div class="font-extralight">
<slot name="blurb" />
</div>
Expand Down