Fix issue #1047 rotate 90 degrees on iOS Safari

The iOS version of webkit still requires the browser prefixes for
transform, see http://stackoverflow.com/a/27304061/4414220
This commit is contained in:
Mark Walker 2015-09-07 11:51:54 -07:00
parent d5b0bd2518
commit 42d7654009

View file

@ -914,6 +914,7 @@ textarea.block {
}
.rotate90 {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}