File tree Expand file tree Collapse file tree 10 files changed +50
-11
lines changed
Expand file tree Collapse file tree 10 files changed +50
-11
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
66<section id =" contact" >
77 <div class =" max-w-[130ch] mx-auto" >
88 <div class =" flex flex-row" >
9- <div class =" w-1/2 p-6" >
9+ <div class =" sm:w-2/5 p-6 py-12 " >
1010 <div class =" prose" >
1111 <Content />
1212 </div >
@@ -48,7 +48,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
4848 </form >
4949 </div >
5050 <div
51- class =" w-1/2 bg-[url(../assets/photos/man-in-office.png)] bg-cover hidden sm:block"
51+ class =" sm:w-3/5 bg-[url(../assets/photos/man-in-office.png)] bg-cover hidden sm:block"
5252 >
5353 <img class =" h-full relative right-0.5" src ={ wedge .src } alt =" " />
5454 </div >
Original file line number Diff line number Diff line change 1- <footer class =" py-6 text-center flex flex-col gap-3 bg-green-300" >
1+ <footer class =" py-12 text-center flex flex-col gap-3 bg-green-300" >
22 <a href =`${import .meta .env .BASE_URL }/#top` >Return to top</a >
33 <p >Benefit Decision Toolkit</p >
44 <p >With ❤️ from Philly</p >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import logo from "../assets/logos/bdt-logo-large-mono-dark.svg";
44import NavMenu from " ./NavMenu.svelte" ;
55---
66
7- <header class =" py-6 px-3 bg-sky-500 sticky top-0 sm:static" >
7+ <header class =" py-6 px-3 bg-sky-500 sticky top-0 sm:static z-50 " >
88 <div
99 class =" flex flex-row justify-between items-baseline gap-6 max-w-[130ch] mx-auto"
1010 >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import { Content } from "../assets/copy/Hero.md";
1414 </div >
1515 <a href =`${import .meta .env .BASE_URL }/#projects` >
1616 <p
17- class =" mt-6 w-fit px-4 py-2 bg-white border-2 border-sky-500 rounded-full text-sky-500 text-lg font-bold font-serif"
17+ class =" mt-6 w-fit px-4 py-2 bg-white border-2 border-sky-500 rounded-full text-sky-500! text-lg font-bold font-serif"
1818 >
1919 See what we can do
2020 </p >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Content } from "../assets/copy/Overview.md";
33---
44
55<section id =" overview" class =" bg-green-200" >
6- <div class =" max-w-[85ch] mx-auto py-6 px-3 prose" >
6+ <div class =" max-w-[85ch] mx-auto py-12 px-3 prose" >
77 <Content />
88 </div >
99</section >
Original file line number Diff line number Diff line change 11---
22import { Content } from " ../assets/copy/Process.md" ;
3+ const steps = [" Create a Screener" , " Add Logic" , " Deploy Your Tool" ];
34---
45
5- <section id =" process" >
6- <div class =" max-w-[85ch] mx-auto py-6 px-3 prose" >
7- <Content />
6+ <section id =" process" class =" border-b-2 border-sky-500" >
7+ <div class =" max-w-[85ch] mx-auto py-12 px-3 flex flex-col gap-8 relative" >
8+ <div class =" prose max-w-[85ch]" >
9+ <Content />
10+ </div >
11+ <div class =" flex sm:gap-4 w-fit mx-auto" >
12+ {
13+ steps .map ((step ) => (
14+ <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" >
15+ <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!" >
17+ { step }
18+ </p >
19+ </div >
20+ </div >
21+ ))
22+ }
23+ </div >
824 </div >
925</section >
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { Content } from "../assets/copy/Hero.md";
66 id =" projects"
77 class =" bg-sky-500/50 bg-[url(../assets/backgrounds/wavy.png)] bg-cover bg-blend-soft-light"
88>
9- <div class =" max-w-[130ch] mx-auto py-6 px-3" >
9+ <div class =" max-w-[130ch] mx-auto py-12 px-3" >
1010 <h2 class =" font-bold font-serif text-2xl text-center mb-6" >
1111 BDT's Projects
1212 </h2 >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import inclusivity from "../assets/icons/inclusivity.png";
99---
1010
1111<section id =" values" >
12- <div class =" max-w-[130ch] mx-auto py-6 px-3" >
12+ <div class =" max-w-[130ch] mx-auto py-12 px-3" >
1313 <h2 class =" font-bold font-serif text-2xl text-center" >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" >
You can’t perform that action at this time.
0 commit comments