From 569a19be95d293cbf608941bee2b87c278827aa2 Mon Sep 17 00:00:00 2001 From: afn <47723802+afnzmn@users.noreply.github.com> Date: Sat, 15 Oct 2022 17:05:22 -0400 Subject: [PATCH] feat: patches page --- src/app.css | 8 +- src/lib/components/atoms/Patch.svelte | 85 +++++++++++ src/lib/components/molecules/NavHost.svelte | 3 +- src/lib/stores/PatchesStore.js | 11 ++ src/routes/+page.svelte | 7 +- src/routes/patches/+page.svelte | 155 ++++++++++++++++++++ static/icons/arrow.svg | 1 + 7 files changed, 263 insertions(+), 7 deletions(-) create mode 100644 src/lib/components/atoms/Patch.svelte create mode 100644 src/lib/stores/PatchesStore.js create mode 100644 src/routes/patches/+page.svelte create mode 100644 static/icons/arrow.svg diff --git a/src/app.css b/src/app.css index 2cbe51e..fd8dbb9 100644 --- a/src/app.css +++ b/src/app.css @@ -29,7 +29,7 @@ html, body{ .wrapper{ margin-inline: auto; - width: min(87%, 100rem); + width: min(90%, 100rem); margin-top: 7rem; } @@ -56,8 +56,8 @@ html, body{ h1{ color: var(--white); font-weight: 700; - line-height: 0.75em; - font-size: 1.75rem; + line-height: 1.5rem; + font-size: 1.5rem; } h2{ @@ -86,7 +86,7 @@ h5{ letter-spacing: 0.02rem; } -h6{ +h6 { color:var(--grey-five); font-weight: 300; font-size: 1rem; diff --git a/src/lib/components/atoms/Patch.svelte b/src/lib/components/atoms/Patch.svelte new file mode 100644 index 0000000..d5a28a9 --- /dev/null +++ b/src/lib/components/atoms/Patch.svelte @@ -0,0 +1,85 @@ + + +
+ + + diff --git a/src/lib/components/molecules/NavHost.svelte b/src/lib/components/molecules/NavHost.svelte index af16a82..b7e2145 100644 --- a/src/lib/components/molecules/NavHost.svelte +++ b/src/lib/components/molecules/NavHost.svelte @@ -27,8 +27,6 @@ {#if $page.url.pathname !== '/'}