From c05a936c8710e91f726f9504899d254046a3cba4 Mon Sep 17 00:00:00 2001 From: Shouvik Roy Date: Tue, 4 Aug 2015 20:47:25 +0530 Subject: [PATCH] Update main.less to fix #1510 Update main.less to fix #1510. There was an alignment issue on Safari because of missing vendor prefix ```-webkit``` on ```transform``` on the ```.points-on-top``` class. --- public/css/main.less | 1 + 1 file changed, 1 insertion(+) diff --git a/public/css/main.less b/public/css/main.less index 68ffd44dc0..21e225994f 100644 --- a/public/css/main.less +++ b/public/css/main.less @@ -577,6 +577,7 @@ thead { margin: 0 auto; position: relative; top: 50%; + -webkit-transform: translateY(-50%); transform: translateY(-50%); }