mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-03 16:14:25 +02:00
download channel fix, added wrapper min width
This commit is contained in:
parent
dfc0dfefa5
commit
f006657050
@ -22,17 +22,18 @@
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
font-size: 1.5rem;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
width: 43vw;
|
width: 100%;
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
border-radius: 200px;
|
border-radius: 200px;
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 12px 40px;
|
padding: 12px 40px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: 1.5rem;
|
|
||||||
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||||
transition-duration: 0.4s;
|
transition-duration: 0.4s;
|
||||||
|
transition-property: background-color;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@
|
|||||||
background-color: var(--grey-one);
|
background-color: var(--grey-one);
|
||||||
border-radius: 200px;
|
border-radius: 200px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
|
||||||
padding: 8px 8px;
|
padding: 8px 8px;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
<DownloadSelector></DownloadSelector>
|
<DownloadSelector></DownloadSelector>
|
||||||
<DownloadSelector></DownloadSelector>
|
<DownloadSelector></DownloadSelector>
|
||||||
<DownloadSelector></DownloadSelector>
|
<DownloadSelector></DownloadSelector>
|
||||||
|
<DownloadSelector></DownloadSelector>
|
||||||
|
<DownloadSelector></DownloadSelector>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,7 +30,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
|
|||||||
|
|
||||||
<NavHost></NavHost>
|
<NavHost></NavHost>
|
||||||
<slot />
|
<slot />
|
||||||
<SocialHost />
|
|
||||||
<Wave />
|
<Wave />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@ -47,7 +46,6 @@ import Wave from '$lib/components/atoms/Wave.svelte';
|
|||||||
}
|
}
|
||||||
|
|
||||||
:global(body) {
|
:global(body) {
|
||||||
overflow-y: hidden;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
@ -55,8 +53,8 @@ import Wave from '$lib/components/atoms/Wave.svelte';
|
|||||||
}
|
}
|
||||||
|
|
||||||
:global(.wrapper) {
|
:global(.wrapper) {
|
||||||
margin-left: 6%;
|
margin-inline: auto;
|
||||||
margin-right: 6%;
|
width: min(90%, 100rem);
|
||||||
margin-top: 3%
|
margin-top: 3%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
<script>
|
<script>
|
||||||
import HeroImage from '$lib/components/atoms/HeroImage.svelte';
|
import HeroImage from '$lib/components/atoms/HeroImage.svelte';
|
||||||
import IndexDescription from '$lib/components/organisms/IndexDescription.svelte';
|
import IndexDescription from '$lib/components/organisms/IndexDescription.svelte';
|
||||||
|
import SocialHost from '$lib/components/molecules/SocialHost.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
|
|
||||||
<HeroImage></HeroImage>
|
<HeroImage></HeroImage>
|
||||||
<IndexDescription />
|
<IndexDescription />
|
||||||
|
<SocialHost />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user