diff --git a/src/lib/components/atoms/DownloadSelection.svelte b/src/lib/components/atoms/DownloadSelection.svelte index c30733b..0105d03 100644 --- a/src/lib/components/atoms/DownloadSelection.svelte +++ b/src/lib/components/atoms/DownloadSelection.svelte @@ -1,12 +1,16 @@ - @@ -14,16 +18,15 @@ a { color: var(--white); text-decoration: none; - } + } - button, - .button-secondary { + button { font-weight: 300; - height:60px; - width:20vw; + height: 60px; + width: 20vw; color: var(--white); border-radius: 200px; - border:0; + border: 0; padding: 12px 40px; cursor: pointer; background-color: transparent; @@ -33,13 +36,19 @@ user-select: none; } - .button-primary { + button.active { background-color: var(--red); box-shadow: 0px 0px 32px 1px var(--red-glow); + font-weight: 600; } button:hover { background-color: var(--grey-two); - font-weight:500; + font-weight: 400; + } + + button.active:hover { + background-color: var(--red); + font-weight: 600; } diff --git a/src/lib/components/atoms/Navigation.svelte b/src/lib/components/atoms/Navigation.svelte index d7312d9..67c37d4 100644 --- a/src/lib/components/atoms/Navigation.svelte +++ b/src/lib/components/atoms/Navigation.svelte @@ -32,7 +32,7 @@ } li:hover { - font-weight: 500; + font-weight: 600; border: 3px solid var(--grey-two); padding: 10px 30px; border-radius: 200px; diff --git a/src/lib/components/molecules/DownloadSelectionHost.svelte b/src/lib/components/molecules/DownloadSelectionHost.svelte index 2dc0ef2..2326cf9 100644 --- a/src/lib/components/molecules/DownloadSelectionHost.svelte +++ b/src/lib/components/molecules/DownloadSelectionHost.svelte @@ -1,12 +1,25 @@
- Manager - CLI - Patches - Integrations + {#each items as item} + + {item} + + {/each}