@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
16 lines (14 loc) • 528 B
HTML
<i-tooltip>
<i-button>Normal Tooltip</i-button>
<template #body>
This is a <strong>freeform tooltip</strong> with a <u>long text</u>. Its width is not controlled.
</template>
</i-tooltip>
<i-tooltip>
<i-button>Fixed Width Tooltip</i-button>
<template #body>
<div class="_xs:justify-content:center" style="white-space: normal; width: 240px">
This is a <strong>freeform tooltip</strong> with a <u>long text</u>. Its width is controlled.
</div>
</template>
</i-tooltip>