Merge pull request #3958 from thielpa/fix-steps-overflow

fix(Steps): add text-overflow ellipsis
pull/3970/head
Tuğçe Küçükoğlu 2023-05-15 12:52:29 +03:00 committed by GitHub
commit c1058710e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -226,6 +226,7 @@ export default {
display: flex;
justify-content: center;
flex: 1 1 auto;
overflow: hidden;
}
.p-steps-item .p-menuitem-link {
@ -246,6 +247,9 @@ export default {
.p-steps-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.p-steps-number {