Skip to content

Commit e8c32bc

Browse files
committed
increase font size and spacing
1 parent 3bb46a2 commit e8c32bc

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<footer class="py-12 text-center flex flex-col gap-3 bg-green-300">
2-
<a class="underline" href=`${import.meta.env.BASE_URL}/#top`>Return to top</a>
3-
<p class="text-xl font-semibold font-serif">Benefit Decision Toolkit</p>
2+
<a class="underline text-lg" href=`${import.meta.env.BASE_URL}/#top`
3+
>Return to top</a
4+
>
5+
<p class="text-2xl! font-semibold font-serif">Benefit Decision Toolkit</p>
46
<p>With ❤️ from Philly</p>
57
</footer>

website/src/components/Hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Content } from "../assets/copy/Hero.md";
88
>
99
<div class="max-w-[130ch] mx-auto mt-20">
1010
<div
11-
class="prose prose-p:text-slate-100 prose-headings:text-slate-100 prose-headings:text-left max-w-120 prose-p:text-shadow-sm/35 prose-p:text-xl prose-headings:text-shadow-lg/15"
11+
class="prose prose-p:text-slate-100 prose-headings:text-slate-100 prose-headings:text-left max-w-120 prose-p:text-shadow-sm/35 prose-p:text-2xl! prose-p:leading-8! prose-headings:text-shadow-lg/15"
1212
>
1313
<Content />
1414
</div>

website/src/components/Process.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const steps = ["Create a Screener", "Add Logic", "Deploy Your Tool"];
1313
steps.map((step) => (
1414
<div class="bg-[url(../assets/backgrounds/chevron.svg)] bg-no-repeat bg-contain sm:h-40 sm:w-40 h-25 w-25 flex justify-center items-center">
1515
<div class="w-15 sm:w-20">
16-
<p class="relative left-1 sm:left-2 text-center text-sm sm:text-xl text-white!">
16+
<p class="relative left-1 sm:left-2 text-center text-sm! sm:text-xl! text-white!">
1717
{step}
1818
</p>
1919
</div>

website/src/components/Projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const projects = await getCollection("projects");
99
class="bg-sky-500/50 bg-[url(../assets/backgrounds/wavy.png)] bg-cover bg-blend-multiply"
1010
>
1111
<div class="max-w-[130ch] mx-auto py-12 px-3">
12-
<h2 class="font-bold font-serif text-2xl text-center mb-6">
12+
<h2 class="font-bold font-serif text-2xl text-center mb-9">
1313
BDT's Projects
1414
</h2>
1515
<ul class="flex flex-col sm:flex-row gap-6 justify-center">

website/src/components/Values.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import inclusivity from "../assets/icons/inclusivity.png";
1010

1111
<section id="values">
1212
<div class="max-w-[130ch] mx-auto py-12 px-3">
13-
<h2 class="font-bold font-serif text-2xl text-center">Our Values</h2>
13+
<h2 class="font-bold font-serif text-2xl text-center mb-6">Our Values</h2>
1414
<ul class="flex flex-col sm:flex-row justify-between">
1515
<li class="flex flex-col gap-6 p-3 items-center sm:w-1/3">
1616
<Image class="w-42" src={empathy} alt="Man in office." />

website/src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Footer from "../components/Footer.astro";
1313
<title>Benefit Decision Toolkit</title>
1414
</head>
1515
<body
16-
class="prose-headings:font-serif prose-headings:text-center prose-p:text-black prose-p:leading-6 prose-a:font-semibold"
16+
class="prose-headings:font-serif prose-headings:text-center prose-p:text-black prose-p:leading-6 prose-a:font-semibold prose-h2:text-3xl prose-h3:text-2xl prose-p:text-lg"
1717
>
1818
<div id="top"></div>
1919
<Header />

0 commit comments

Comments
 (0)