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 <button
class={twMerge( 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, className,
)} )}
{...rest} {...rest}

View file

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