website/src/components/navButton.svelte
dusk 64f2864617
fix: navbuttons now bounce in reverse
this makes it so that the user cant trigger a reset of the animation by just placing the cursor at the bottom and the button going out of the cursors area
2024-09-29 21:53:59 +03:00

28 lines
913 B
Svelte

<script lang="ts">
export let highlight: boolean = false;
export let name: string;
export let href: string;
export let iconUri: string;
</script>
<a
class="
max-w-36 p-0.5 pr-1.5 border-ralsei-white border-4
{highlight
? 'min-w-36 bg-gradient-to-l to-ralsei-pink-neon/30 from-ralsei-pink-regular/20 from-30% border-ridge motion-safe:animate-pulse hover:animate-none'
: 'w-fit border-double hover:border-solid animate-bounce-reverse hover:underline'}
flex gap-1 items-center justify-center align-middle text-center
{highlight ? 'text-ralsei-pink-regular app-selected-route' : 'text-ralsei-green-light'}
"
title={name}
href="/{href}"
data-sveltekit-preload-data="hover"
>
<img class="max-w-4" style="image-rendering: pixelated;" src={iconUri} alt={name} />
<div
class="font-monospace text-sm/3 overflow-hidden text-ellipsis text-nowrap [text-decoration-line:inherit]"
>
{name}
</div>
</a>