Revert "FS-8078 - [verto_communicator] fix display flex in safari"

This reverts commit 5bf0d83474.
This commit is contained in:
Ken Rice 2015-09-18 14:27:15 -05:00
parent 650bb94a51
commit d7cd5b6a1e

View File

@ -39,15 +39,15 @@ body {
/* This is an technique to align the block centered vertically
and horizontally in a page. */
.centered-block-frame {
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;
width: 100%;
height: 100%;
display: -webkit-flex; /* Safari */
-webkit-justify-content: center; /* Safari 6.1+ */
-webkit-align-items: center;
}
.centered-block {