Skip to content

Commit

Permalink
Merge pull request #3958 from thielpa/fix-steps-overflow
Browse files Browse the repository at this point in the history
fix(Steps): add text-overflow ellipsis
  • Loading branch information
tugcekucukoglu authored May 15, 2023
2 parents a6e365d + 108a8f5 commit c105871
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/lib/steps/Steps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ export default {
display: flex;
justify-content: center;
flex: 1 1 auto;
overflow: hidden;
}
.p-steps-item .p-menuitem-link {
Expand All @@ -246,6 +247,9 @@ export default {
.p-steps-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.p-steps-number {
Expand Down

0 comments on commit c105871

Please sign in to comment.