jaster.xyz/src/components/LinkButton.astro
2025-06-01 19:14:27 +02:00

28 lines
474 B
Text

---
interface Props {
href: string | URL;
text: string;
}
const { href, text } = Astro.props;
---
<a class="link-button" href={href}>{text}</a>
<style>
.link-button {
text-decoration: none;
margin: 0.25em;
padding: 0.5em 1em;
border: 1px solid var(--text-color);
position: relative;
background: transparent;
font-size: 1.4rem;
color: var(--text-color);
}
.link-button:hover {
top: 2px;
font-weight: normal;
}
</style>