Fixed #190 - Top* and Bottom* animation are not working correctly on Dialog with 'position' property

pull/193/head
mertsincan 2020-02-07 15:54:20 +03:00
parent 130db1e09e
commit 5f3f46172d
1 changed files with 4 additions and 4 deletions

View File

@ -441,22 +441,22 @@ export default {
.p-dialog-top {
align-items: flex-start;
}
.p-dialog-topLeft {
.p-dialog-topleft {
justify-content: flex-start;
align-items: flex-start;
}
.p-dialog-topRight {
.p-dialog-topright {
justify-content: flex-end;
align-items: flex-start;
}
.p-dialog-bottom {
align-items: flex-end;
}
.p-dialog-bottomLeft {
.p-dialog-bottomleft {
justify-content: flex-start;
align-items: flex-end;
}
.p-dialog-bottomRight {
.p-dialog-bottomright {
justify-content: flex-end;
align-items: flex-end;
}