Skip to content

Commit

Permalink
fixed #7545 ConfirmDialog are moving from side to center with Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed Apr 12, 2019
1 parent f6f17cf commit ecb93be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/confirmdialog/confirmdialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ import {Subscription} from 'rxjs';
})),
state('visible', style({
transform: 'translateX(-50%) translateY(-50%)',
opacity: 1
'-webkit-transform':'translateX(-50%) translateY(-50%)',
opacity: 1,
})),
transition('* => *', animate('{{transitionParams}}'))
])
Expand Down

0 comments on commit ecb93be

Please sign in to comment.