Skip to content

Commit

Permalink
Merge pull request #77 from zebrapurring/fix-tooltip-overflow-top
Browse files Browse the repository at this point in the history
Move the link tooltip to the top to prevent overflows
  • Loading branch information
katosdev authored Jun 29, 2024
2 parents 0f482ae + ff28175 commit 4f00822
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/>
<Currency v-else-if="detail.type == 'currency'" :amount="detail.text" />
<template v-else-if="detail.type === 'link'">
<div class="tooltip tooltip-primary tooltip-right" :data-tip="detail.href">
<div class="tooltip tooltip-primary tooltip-top" :data-tip="detail.href">
<a class="btn btn-primary btn-xs" :href="detail.href" target="_blank">
<MdiOpenInNew class="mr-2 swap-on" />
{{ detail.text }}
Expand Down

0 comments on commit 4f00822

Please sign in to comment.