fix(Steps): add text-overflow ellipsis

This commit is contained in:
Paul Thiel 2023-05-14 17:11:25 +02:00
parent 321dabc86d
commit 108a8f553e

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 {