fix: i am not the only contributor, jumping scrollbar fixed

This commit is contained in:
Nikita Krupin
2022-08-15 21:05:48 -04:00
parent 9d367ff31f
commit d1f19bf1a8
4 changed files with 24 additions and 14 deletions

View File

@@ -45,6 +45,7 @@
padding: 0;
font-size: 100%;
box-sizing: border-box;
overflow-y: scroll;
}
:global(body) {

View File

@@ -1,7 +1,13 @@
<script>
import ContributorHost from '$lib/components/molecules/ContributorHost.svelte';
</script>
let peoples = [
"Ushie",
"afnzmn",
"baiorett",
"PickleNik",
]
</script>
<div class="wrapper">
<ContributorHost></ContributorHost>
<ContributorHost {peoples}></ContributorHost>
</div>