FS-8078 #resolve fix safari without breaking firefox

This commit is contained in:
Ken Rice 2015-09-18 14:38:05 -05:00
parent d7cd5b6a1e
commit 78c93e632f
1 changed files with 1 additions and 1 deletions

View File

@ -39,10 +39,10 @@ body {
/* This is an technique to align the block centered vertically
and horizontally in a page. */
.centered-block-frame {
display: flex;
display: -webkit-flex; /* Safari */
-webkit-justify-content: center; /* Safari 6.1+ */
-webkit-align-items: center;
display: flex;
justify-content: center;
align-items: center;
object-fit:inherit;