From 97d333ec6aee525a01f3151f5590f407943e7818 Mon Sep 17 00:00:00 2001 From: afnzmn Date: Mon, 18 Jul 2022 22:46:58 -0400 Subject: [PATCH] download selection wip, wrapper fix --- .../components/atoms/DownloadSelection.svelte | 45 +++++++++++++++++++ .../molecules/ContributorHost.svelte | 3 +- .../molecules/DownloadSelectionHost.svelte | 22 +++++++++ src/routes/__layout.svelte | 7 +++ src/routes/credits.svelte | 2 - src/routes/download.svelte | 7 +++ src/routes/index.svelte | 10 ----- 7 files changed, 82 insertions(+), 14 deletions(-) create mode 100644 src/lib/components/atoms/DownloadSelection.svelte create mode 100644 src/lib/components/molecules/DownloadSelectionHost.svelte diff --git a/src/lib/components/atoms/DownloadSelection.svelte b/src/lib/components/atoms/DownloadSelection.svelte new file mode 100644 index 0000000..c30733b --- /dev/null +++ b/src/lib/components/atoms/DownloadSelection.svelte @@ -0,0 +1,45 @@ + + + + + + + diff --git a/src/lib/components/molecules/ContributorHost.svelte b/src/lib/components/molecules/ContributorHost.svelte index 3a2b5f0..d9926c4 100644 --- a/src/lib/components/molecules/ContributorHost.svelte +++ b/src/lib/components/molecules/ContributorHost.svelte @@ -35,9 +35,8 @@ .social-host { width: 100; + gap:2rem; align-items: center; - margin-left: 5rem; - margin-right: 5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); } diff --git a/src/lib/components/molecules/DownloadSelectionHost.svelte b/src/lib/components/molecules/DownloadSelectionHost.svelte new file mode 100644 index 0000000..f6e672c --- /dev/null +++ b/src/lib/components/molecules/DownloadSelectionHost.svelte @@ -0,0 +1,22 @@ + + +
+ Manager + CLI + Patches + Integrations +
+ + diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 7b76219..e691db2 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -4,6 +4,7 @@ import Button from "$lib/components/atoms/Button.svelte"; import NavHost from "$lib/components/molecules/NavHost.svelte"; import SocialButton from "$lib/components/atoms/SocialButton.svelte"; import SocialHost from "$lib/components/molecules/SocialHost.svelte"; +import Wave from '$lib/components/atoms/Wave.svelte'; @@ -28,6 +29,7 @@ import SocialHost from "$lib/components/molecules/SocialHost.svelte"; +