mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-29 05:41:03 +00:00
fix: i am not the only contributor, jumping scrollbar fixed
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
<script>
|
||||
<script lang="ts">
|
||||
import ContributorButton from "../atoms/ContributorButton.svelte";
|
||||
export let peoples: Array<String>;
|
||||
</script>
|
||||
|
||||
<div class="social-host">
|
||||
<ContributorButton></ContributorButton>
|
||||
{#each peoples as person}
|
||||
<ContributorButton username={person}></ContributorButton>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.social-host {
|
||||
gap: 2rem;
|
||||
width: 100;
|
||||
gap:2rem;
|
||||
align-items: center;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user