Skip to content

Commit

Permalink
Standardize font in tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Nov 4, 2024
1 parent c5258de commit 5297d7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion arches_lingo/src/arches_lingo/components/tree/TreeRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ const toggleFocus = (node: TreeNode) => {
<span v-html="rowLabel(node.data)"></span>
<!-- eslint-enable vue/no-v-html -->
<i
v-tooltip="labelForFocusToggle(node)"
v-tooltip="{
value: labelForFocusToggle(node),
pt: { text: { style: { fontFamily: 'sans-serif' } } },
}"
role="button"
:class="iconForFocusToggle(node)"
:aria-label="labelForFocusToggle(node)"
Expand Down

0 comments on commit 5297d7b

Please sign in to comment.