hc99's picture
Add files using upload-large-folder tool
8766bc5 verified
raw
history blame
744 Bytes
<script lang="ts">
export let text: string;
export let x: number;
export let y: number;
export let color: string;
let w: number;
let h: number;
</script>
<div
bind:offsetWidth={w}
bind:offsetHeight={h}
style="
top: {y - h / 2}px;
left: {x - w - 7}px;"
>
<span style="background: {color}" />
{text}
</div>
<style>
div {
display: flex;
position: absolute;
justify-content: center;
align-items: center;
border-radius: var(--radius-sm);
background-color: rgba(0, 0, 0, 0.8);
padding: var(--size-1) 0.4rem;
color: white;
font-size: var(--text-sm);
}
span {
display: inline-block;
margin-right: var(--size-1);
border-radius: var(--radius-xs);
width: var(--size-3);
height: var(--size-3);
}
</style>