Skip to content

Commit

Permalink
Fix: AutoComplete long text tags overflow (primefaces#3980)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amal Mathew committed Jun 9, 2023
1 parent 6c39522 commit 8c3a543
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/lib/autocomplete/BaseAutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const styles = `
display: inline-flex;
align-items: center;
flex: 0 0 auto;
max-width: 100%;
}
.p-autocomplete-token-icon {
Expand Down Expand Up @@ -322,3 +323,9 @@ export default {
}
};
</script>

<style>
.p-icon {
min-width: 1rem;
}
</style>

0 comments on commit 8c3a543

Please sign in to comment.