mirror of https://github.com/VERT-sh/VERT.git
Merge branch 'nightly' of https://github.com/VERT-sh/VERT into nightly
This commit is contained in:
commit
442efb5e14
|
@ -11,12 +11,9 @@
|
||||||
const links = $derived(Object.entries(items));
|
const links = $derived(Object.entries(items));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<footer
|
<footer class={classList}>
|
||||||
class={classList}
|
|
||||||
style="background: linear-gradient(to bottom, transparent, var(--bg) 100%)"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="w-full h-full flex items-center justify-center text-muted gap-3"
|
class="w-full h-full flex items-center justify-center text-muted gap-3 relative"
|
||||||
>
|
>
|
||||||
<p>© {year} VERT.</p>
|
<p>© {year} VERT.</p>
|
||||||
{#each links as [name, url] (name)}
|
{#each links as [name, url] (name)}
|
||||||
|
@ -31,4 +28,9 @@
|
||||||
</a>
|
</a>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="absolute bottom-0 left-0 w-full h-24 -z-10"
|
||||||
|
style="background: linear-gradient(to bottom, transparent, var(--bg) 100%)"
|
||||||
|
></div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -180,7 +180,7 @@
|
||||||
<!-- FIXME: if user resizes between desktop/mobile, highlight of page disappears (only shows on original size) -->
|
<!-- FIXME: if user resizes between desktop/mobile, highlight of page disappears (only shows on original size) -->
|
||||||
<div class="z-50">
|
<div class="z-50">
|
||||||
<!-- Mobile logo -->
|
<!-- Mobile logo -->
|
||||||
<div class="flex md:hidden justify-center items-center p-8">
|
<div class="flex md:hidden justify-center items-center pb-8 pt-4">
|
||||||
<a
|
<a
|
||||||
class="flex items-center justify-center bg-panel p-2 rounded-[20px] shadow-panel"
|
class="flex items-center justify-center bg-panel p-2 rounded-[20px] shadow-panel"
|
||||||
href="/"
|
href="/"
|
||||||
|
@ -218,7 +218,7 @@
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col h-full pb-36 md:pb-0"
|
class="flex flex-col h-full pb-32"
|
||||||
in:fade={{
|
in:fade={{
|
||||||
duration,
|
duration,
|
||||||
easing: quintOut,
|
easing: quintOut,
|
||||||
|
@ -244,7 +244,7 @@
|
||||||
|
|
||||||
<div class="z-50">
|
<div class="z-50">
|
||||||
<div
|
<div
|
||||||
class="hidden md:block w-full h-14 border-t border-separator relative mt-12"
|
class="hidden md:block w-full h-14 border-t border-separator fixed bottom-0 mt-12"
|
||||||
>
|
>
|
||||||
<Footer
|
<Footer
|
||||||
class="w-full h-full"
|
class="w-full h-full"
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="w-screen px-8 h-full flex items-start justify-center overflow-hidden max-h-screen"
|
class="w-screen px-2 md:px-8 h-full flex items-start justify-center overflow-hidden max-h-screen"
|
||||||
>
|
>
|
||||||
<div class="content w-screen flex items-center justify-center flex-grow">
|
<div class="content w-screen flex items-center justify-center flex-grow">
|
||||||
<div class="max-w-5xl w-full">
|
<div class="max-w-5xl w-full">
|
||||||
|
|
Loading…
Reference in New Issue