Skip to content

Commit

Permalink
fix: address pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM committed Oct 11, 2024
1 parent 85a2906 commit 3000a4f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/KInput/KInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
class="mask-value-toggle-button"
@click.stop="maskValue = !maskValue"
>
<VisibilityIcon
<VisibilityOffIcon
v-if="maskValue"
decorative
/>
<VisibilityOffIcon
<VisibilityIcon
v-else
decorative
/>
Expand Down Expand Up @@ -484,5 +484,9 @@ $kInputSlotSpacing: var(--kui-space-40, $kui-space-40); // $kSelectInputSlotSpac
}
}
}
&::-ms-reveal {
display: none;
}
}
</style>

0 comments on commit 3000a4f

Please sign in to comment.