download channel fix, added wrapper min width

This commit is contained in:
af-n
2022-07-20 14:32:23 -04:00
parent dfc0dfefa5
commit f006657050
5 changed files with 11 additions and 7 deletions

View File

@@ -30,7 +30,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
<NavHost></NavHost>
<slot />
<SocialHost />
<Wave />
<style>
@@ -47,7 +46,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
}
:global(body) {
overflow-y: hidden;
margin: 0;
padding: 0;
line-height: 1.3;
@@ -55,8 +53,8 @@ import Wave from '$lib/components/atoms/Wave.svelte';
}
:global(.wrapper) {
margin-left: 6%;
margin-right: 6%;
margin-inline: auto;
width: min(90%, 100rem);
margin-top: 3%
}

View File

@@ -1,12 +1,14 @@
<script>
import HeroImage from '$lib/components/atoms/HeroImage.svelte';
import IndexDescription from '$lib/components/organisms/IndexDescription.svelte';
import SocialHost from '$lib/components/molecules/SocialHost.svelte';
</script>
<div class="wrapper">
<HeroImage></HeroImage>
<IndexDescription />
<SocialHost />
</div>