mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-03 08:04:25 +02:00
22 lines
779 B
Svelte
22 lines
779 B
Svelte
<script>
|
|
import SocialButton from "../atoms/SocialButton.svelte";
|
|
</script>
|
|
|
|
<div class="social-host">
|
|
<SocialButton src="socials/github.svg" alt="GitHub" href="https://revanced.app/github"></SocialButton>
|
|
<SocialButton src="socials/discord.svg" alt="Discord" href="http://revanced.app/discord"></SocialButton>
|
|
<SocialButton src="socials/reddit.svg" alt="Reddit" href="https://revanced.app/reddit"></SocialButton>
|
|
<SocialButton src="socials/telegram.svg" alt="Telegram" href="https://revanced.app/telegram"></SocialButton>
|
|
</div>
|
|
|
|
<style>
|
|
.social-host {
|
|
|
|
justify-content: space-between;
|
|
position: absolute;
|
|
margin-left: 6rem;
|
|
align-items: center;
|
|
display: inline-block;
|
|
transform: translateY(380%);
|
|
}
|
|
</style> |