buttons work, added social buttons, contrib wip

This commit is contained in:
afnzmn
2022-07-18 17:56:50 -04:00
parent 88cf26714b
commit b99db6391f
16 changed files with 157 additions and 17 deletions

View File

@ -15,6 +15,10 @@ import NavHost from "$lib/components/molecules/NavHost.svelte";
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<meta name="og:title" content="ReVanced"/>
<meta name="og:image" itemprop="image" content="embed.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="theme-color" content="#0f111a">
<title>ReVanced</title>
<link rel="stylesheet" href="css/styles.css" />
</svelte:head>
@ -51,6 +55,7 @@ import NavHost from "$lib/components/molecules/NavHost.svelte";
--grey-one: #1c1e29;
--grey-two: #2b2d3a;
--grey-three: #3e404f;
--grey-four: #1B1E29;
}
:global(::selection) {
@ -88,12 +93,4 @@ import NavHost from "$lib/components/molecules/NavHost.svelte";
:global(::-webkit-scrollbar-thumb:hover) {
background-color: var(--grey-three);
}
:global(::-webkit-scrollbar-track-piece){
display:none;
}
:global(::-webkit-scrollbar-track) {
background: rgba(0, 0, 0, 0.2);
}
</style>

View File

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