download selection wip, wrapper fix

This commit is contained in:
afnzmn
2022-07-18 22:46:58 -04:00
parent 28b8ebcbb0
commit 97d333ec6a
7 changed files with 82 additions and 14 deletions

View File

@@ -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));
}

View File

@@ -0,0 +1,22 @@
<script>
import DownloadSelection from '../atoms/DownloadSelection.svelte';
</script>
<div class="download-selection">
<DownloadSelection>Manager</DownloadSelection>
<DownloadSelection>CLI</DownloadSelection>
<DownloadSelection>Patches</DownloadSelection>
<DownloadSelection>Integrations</DownloadSelection>
</div>
<style>
.download-selection {
transform: translateY(60%);
background-color: var(--grey-one);
border-radius: 200px;
display: flex;
justify-content: space-between;
padding: 8px 8px;
}
</style>