This commit is contained in:
afnzmn 2022-07-18 18:08:35 -04:00
parent b99db6391f
commit 86851df0e2
3 changed files with 6 additions and 2 deletions

View File

@ -13,6 +13,8 @@
.social-host { .social-host {
justify-content: space-between; justify-content: space-between;
position: absolute;
margin-left: 6rem;
align-items: center; align-items: center;
display: inline-block; display: inline-block;
transform: translateY(380%); transform: translateY(380%);

View File

@ -2,6 +2,8 @@
import Button from "$lib/components/atoms/Button.svelte"; import Button from "$lib/components/atoms/Button.svelte";
import NavHost from "$lib/components/molecules/NavHost.svelte"; import NavHost from "$lib/components/molecules/NavHost.svelte";
import SocialButton from "$lib/components/atoms/SocialButton.svelte";
import SocialHost from "$lib/components/molecules/SocialHost.svelte";
</script> </script>
@ -25,7 +27,7 @@ import NavHost from "$lib/components/molecules/NavHost.svelte";
<NavHost></NavHost> <NavHost></NavHost>
<slot /> <slot />
<SocialHost />
<style> <style>
:global(*) { :global(*) {
@ -56,6 +58,7 @@ import NavHost from "$lib/components/molecules/NavHost.svelte";
--grey-two: #2b2d3a; --grey-two: #2b2d3a;
--grey-three: #3e404f; --grey-three: #3e404f;
--grey-four: #1B1E29; --grey-four: #1B1E29;
--grey-five: #D0D0D0;
} }
:global(::selection) { :global(::selection) {

View File

@ -8,7 +8,6 @@
<div class="wrapper"> <div class="wrapper">
<IndexDescription /> <IndexDescription />
<HeroImage /> <HeroImage />
<SocialHost />
</div> </div>
<Wave /> <Wave />