Skip to content

Commit

Permalink
fix(comp:input): sufix click does not effect (#1745)
Browse files Browse the repository at this point in the history
  • Loading branch information
threedayAAAAA committed Nov 29, 2023
1 parent 2ca124d commit 4769dcd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/components/input/style/index.less
Expand Up @@ -205,6 +205,7 @@
font-size: @form-new-icon-font-size;
cursor: pointer;
opacity: 0;
pointer-events: none;
background: @form-new-background-color;
transition: all var(--ix-transition-duration-fast) var(--ix-ease-in-out);

Expand All @@ -214,6 +215,7 @@

&.visible {
opacity: 1;
pointer-events: auto;
}
}

Expand Down

0 comments on commit 4769dcd

Please sign in to comment.