Fix pinned button border

This commit is contained in:
Joscha 2025-02-10 02:10:20 +01:00
parent b29b3c1e4e
commit 447bcf39a7

View file

@ -7,7 +7,7 @@ const props = defineProps<{
<template>
<div
class="flex select-none items-center rounded-sm border p-0.5 transition hover:scale-110 active:scale-95"
:class="props.inverted ? 'bg-black text-white' : 'bg-white text-black'"
:class="props.inverted ? 'border-black bg-black text-white' : 'bg-white text-black'"
>
<slot></slot>
</div>