mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-03 16:14:25 +02:00
Revert "scrollbar ting"
This reverts commit e30d596dd407fba43e9688718648a7ccb5ccb0a7.
This commit is contained in:
parent
30849593ed
commit
e024deac54
@ -10,6 +10,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.social-host {
|
.social-host {
|
||||||
gap: 2rem;
|
gap: 2rem;
|
||||||
width: 100;
|
width: 100;
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
<script>
|
<script>
|
||||||
import Button from '$lib/components/atoms/Button.svelte';
|
|
||||||
import NavHost from '$lib/components/molecules/NavHost.svelte';
|
import Button from "$lib/components/atoms/Button.svelte";
|
||||||
import SocialButton from '$lib/components/atoms/SocialButton.svelte';
|
import NavHost from "$lib/components/molecules/NavHost.svelte";
|
||||||
import SocialHost from '$lib/components/molecules/SocialHost.svelte';
|
import SocialButton from "$lib/components/atoms/SocialButton.svelte";
|
||||||
import Wave from '$lib/components/atoms/Wave.svelte';
|
import SocialHost from "$lib/components/molecules/SocialHost.svelte";
|
||||||
|
import Wave from '$lib/components/atoms/Wave.svelte';
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
@ -16,19 +18,16 @@
|
|||||||
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap"
|
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
/>
|
/>
|
||||||
<meta name="og:title" content="ReVanced" />
|
<meta name="og:title" content="ReVanced"/>
|
||||||
<meta name="og:image" itemprop="image" content="/embed.png" />
|
<meta name="og:image" itemprop="image" content="/embed.png">
|
||||||
<meta
|
<meta property="og:description" content="An extensible framework for building application mods.">
|
||||||
property="og:description"
|
<meta name="twitter:image" itemprop="image" content="/embed.png">
|
||||||
content="An extensible framework for building application mods."
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
/>
|
<meta name="theme-color" content="#0f111a">
|
||||||
<meta name="twitter:image" itemprop="image" content="/embed.png" />
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
|
||||||
<meta name="theme-color" content="#0f111a" />
|
|
||||||
<title>ReVanced</title>
|
<title>ReVanced</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<NavHost />
|
<NavHost></NavHost>
|
||||||
<slot />
|
<slot />
|
||||||
<Wave />
|
<Wave />
|
||||||
|
|
||||||
@ -67,8 +66,8 @@
|
|||||||
--grey-one: #1c1e29;
|
--grey-one: #1c1e29;
|
||||||
--grey-two: #2b2d3a;
|
--grey-two: #2b2d3a;
|
||||||
--grey-three: #3e404f;
|
--grey-three: #3e404f;
|
||||||
--grey-four: #1b1e29;
|
--grey-four: #1B1E29;
|
||||||
--grey-five: #d0d0d0;
|
--grey-five: #D0D0D0;
|
||||||
--grey-six: #a19e9e;
|
--grey-six: #a19e9e;
|
||||||
--grey-seven: #535563;
|
--grey-seven: #535563;
|
||||||
--bezier-one: cubic-bezier(0.25, 0.46, 0.45, 0.94)
|
--bezier-one: cubic-bezier(0.25, 0.46, 0.45, 0.94)
|
||||||
@ -113,16 +112,14 @@
|
|||||||
/*-----scrollbar-----*/
|
/*-----scrollbar-----*/
|
||||||
|
|
||||||
:global(::-webkit-scrollbar) {
|
:global(::-webkit-scrollbar) {
|
||||||
width: 16px;
|
width: 20px;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
:global(::-webkit-scrollbar-thumb) {
|
:global(::-webkit-scrollbar-thumb) {
|
||||||
background-color: var(--grey-two); /* color of the scroll thumb */
|
background-color: var(--grey-three);
|
||||||
border-radius: 1rem 0 0 1rem; /* roundness of the scroll thumb */
|
border-radius: 20px;
|
||||||
border-bottom: 0.25rem solid transparent; /* creates padding around scroll thumb */
|
border: 6px solid transparent;
|
||||||
border-left: 0.25rem solid transparent; /* creates padding around scroll thumb */
|
|
||||||
border-top: 0.25rem solid transparent; /* creates padding around scroll thumb */
|
|
||||||
background-clip: content-box;
|
background-clip: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user