2024-08-15 00:43:18 +03:00
|
|
|
<script lang="ts">
|
|
|
|
export let highlight: boolean = false;
|
|
|
|
export let name: string;
|
|
|
|
export let href: string;
|
|
|
|
export let iconUri: string;
|
|
|
|
</script>
|
|
|
|
|
2024-09-23 16:14:15 +03:00
|
|
|
<a
|
2024-08-15 00:43:18 +03:00
|
|
|
class="
|
2024-09-23 16:14:15 +03:00
|
|
|
max-w-36 p-0.5 pr-1.5 border-ralsei-white border-4
|
|
|
|
{highlight
|
2024-09-23 15:02:42 +03:00
|
|
|
? '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'
|
2024-09-29 21:53:59 +03:00
|
|
|
: 'w-fit border-double hover:border-solid animate-bounce-reverse hover:underline'}
|
2024-09-23 16:14:15 +03:00
|
|
|
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"
|
2024-08-15 00:43:18 +03:00
|
|
|
>
|
2024-09-23 16:14:15 +03:00
|
|
|
<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]"
|
2024-08-15 00:43:18 +03:00
|
|
|
>
|
2024-09-23 16:14:15 +03:00
|
|
|
{name}
|
|
|
|
</div>
|
|
|
|
</a>
|