kjelsrud.dev/src/components/HeaderLink.astro
SindreKjelsrud fbe080f605 💄 styling Header
2023-08-22 16:01:37 +02:00

24 lines
493 B
Text

---
import type { HTMLAttributes } from 'astro/types';
type Props = HTMLAttributes<'a'>;
const { href, class: className, ...props } = Astro.props;
const { pathname } = Astro.url;
const isActive = href === pathname || href === pathname.replace(/\/$/, '');
---
<a href={href} class:list={[className, { active: isActive }]} {...props}>
<slot />
</a>
<style>
a {
display: inline-block;
text-decoration: none;
}
a.active {
font-weight: bolder;
border-bottom: 2px solid;
}
</style>