Update button styling

This commit is contained in:
SkyfallWasTaken 2024-07-07 20:44:35 +01:00
parent 083e285732
commit e8abbd26f8
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ const { class: className, ...rest } = Astro.props;
<button
class={twMerge(
"shadow-sm px-3 py-2 rounded-md bg-surface0 hover:bg-surface1 transition",
"shadow-sm px-3 py-2 rounded-md bg-surface0 hover:bg-surface1 border-surface1 border-[1px] transition",
className,
)}
{...rest}

View file

@ -23,7 +23,7 @@ import Button from "../components/ui/Button.astro";
tuned!
</p>
<div class="flex flex-row gap-2">
<Button class="border-surface1 border-[1px]">
<Button>
<a href="/blog">Read my blog</a>
</Button>
</div>