General fix the homepage and the sponsor block overflow on mobile

This commit is contained in:
2026-01-26 23:46:43 -05:00
parent bd4889b6f9
commit 6eff0e5e83
7 changed files with 45 additions and 37 deletions

View File

@@ -1,11 +1,12 @@
<script lang="ts">
let { href, external = false, children } = $props();
let { href, external = false, children, class: className = '' } = $props();
</script>
<a
{href}
target={external ? '_blank' : undefined}
rel={external ? 'noopener noreferrer' : undefined}
class={className}
>
{@render children()}
</a>