Skip to content

Commit

Permalink
[FIX] Social icons broken in IOS8.
Browse files Browse the repository at this point in the history
  • Loading branch information
pxamike authored and dmh committed Jun 9, 2016
1 parent c125bfb commit 06199aa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dev/styles/main/contentElements/socialIcons.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
position: absolute;
top: 50%;
left: 50%;
transform: translate3D(-50%, -50%, 0) rotateY(0);
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%); // ios8 safari fix - only works in this order
}

&:after {
Expand All @@ -35,7 +36,8 @@
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate3D(-50%, -50%, 0);
transform: translateY(-50%, -50%);
-webkit-transform: translate(-50%, -50%); // ios8 safari fix - only works in this order
}
}
}
Expand Down

0 comments on commit 06199aa

Please sign in to comment.