mirror of
https://codeberg.org/JasterV/jaster.xyz.git
synced 2026-04-26 18:10:01 +00:00
28 lines
473 B
Text
28 lines
473 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.25em 1em;
|
|
border: 1px solid var(--text-color);
|
|
position: relative;
|
|
background: transparent;
|
|
font-size: 1.4rem;
|
|
font-weight: bold;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.link-button:hover {
|
|
top: 2px;
|
|
}
|
|
</style>
|