mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-27 21:01:03 +00:00
download selection wip, wrapper fix
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
22
src/lib/components/molecules/DownloadSelectionHost.svelte
Normal file
22
src/lib/components/molecules/DownloadSelectionHost.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user