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.
This commit is contained in:
Shouvik Roy
2015-08-04 20:47:25 +05:30
parent c8488c8419
commit c05a936c87

View File

@ -577,6 +577,7 @@ thead {
margin: 0 auto;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}