Commit ee385d59 authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #16256 from twbs/fix-16247

Add px unit to perspective property value
parents 9cc9379f e9a74724
Showing with 3 additions and 3 deletions
+3 -3
......@@ -6261,8 +6261,8 @@ button.close {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
......
......@@ -29,7 +29,7 @@
@media all and (transform-3d), (-webkit-transform-3d) {
.transition-transform(~'0.6s ease-in-out');
.backface-visibility(~'hidden');
.perspective(1000);
.perspective(1000px);
&.next,
&.active.right {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment