15 lines
224 B
Vue
15 lines
224 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="tooltip-divider"></div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.tooltip-divider {
|
|
height: 1px;
|
|
background: var(--table-border, rgba(255,255,255,0.08));
|
|
}
|
|
</style>
|