From 5bf0d83474242065a0efec870c7fee419e0e0998 Mon Sep 17 00:00:00 2001 From: Stefan Yohansson Date: Thu, 17 Sep 2015 09:01:01 -0300 Subject: [PATCH] FS-8078 - [verto_communicator] fix display flex in safari --- html5/verto/verto_communicator/src/css/verto.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html5/verto/verto_communicator/src/css/verto.css b/html5/verto/verto_communicator/src/css/verto.css index 94976e7d48..41593a3d2c 100644 --- a/html5/verto/verto_communicator/src/css/verto.css +++ b/html5/verto/verto_communicator/src/css/verto.css @@ -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 {