The modal is positioned using `transform: translate(-50%, -50%);` but it causes elements in the modal to be blurred: Element in modal with transform:  Element in modal without transform:  I'm on latest Chrome (Version 63.0.3239.132 (Official Build) (64-bit)) As a workaround, I modify the styles of `ember-modal-overlay` to use flex positioning instead: ``` display: flex; align-items: center; justify-content: center; ```