Begin adding tooltip to text input module

This commit is contained in:
luis cielak 2018-08-09 14:25:34 -04:00
parent 3860bc40a6
commit 659edcd183
2 changed files with 5 additions and 1 deletions

View File

@ -107,3 +107,7 @@
transition: opacity .15s;
}
}
.tooltip-wrapper {
}

View File

@ -2,7 +2,7 @@
{% macro Tooltip(message) -%}
<span v-tooltip="{content: '{{message}}'}">
<span class="tooltip-wrapper" v-tooltip="{content: '{{message}}'}">
{{ Icon('help') }}
</span>