Skip to content

Commit

Permalink
fix(editor): Make tooltip link more prominent
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Jan 9, 2025
1 parent 3eeea28 commit 2e3503f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ onMounted(async () => {
<i18n-t keypath="projects.move.resource.modal.message.usedCredentials">
<template #usedCredentials>
<N8nTooltip placement="top">
<span>
<span :class="$style.tooltipText">
{{
i18n.baseText('projects.move.resource.modal.message.usedCredentials.number', {
adjustToNumber: usedCredentials.length,
Expand Down Expand Up @@ -278,6 +278,10 @@ onMounted(async () => {
margin-top: var(--spacing-s);
}
.tooltipText {
text-decoration: underline;
}
.credentialsList {
list-style-type: none;
padding: 0;
Expand Down

0 comments on commit 2e3503f

Please sign in to comment.