AVEdate / chat-ui-main /src /lib /components /HoverTooltip.svelte
zeroMN's picture
Upload 517 files
8d88d9b verified
raw
history blame contribute delete
734 Bytes
<script lang="ts">
export let label = "";
export let position: "top" | "bottom" | "left" | "right" = "bottom";
export let TooltipClassNames = "";
const positionClasses = {
top: "bottom-full mb-2",
bottom: "top-full mt-2",
left: "right-full mr-2 top-1/2 -translate-y-1/2",
right: "left-full ml-2 top-1/2 -translate-y-1/2",
};
</script>
<div class="group/tooltip inline-block md:relative">
<slot />
<div
class="
invisible
absolute
z-10
w-64
whitespace-normal
rounded-md
bg-black
p-2
text-center
text-white
group-hover/tooltip:visible
group-active/tooltip:visible
max-sm:left-1/2
max-sm:-translate-x-1/2
{positionClasses[position]}
{TooltipClassNames}
"
>
{label}
</div>
</div>