From 34a5ca6903982eaab3be6ecca56c20f8376bf3ea Mon Sep 17 00:00:00 2001 From: Nick Schot Date: Tue, 15 Oct 2019 12:41:02 +0200 Subject: [PATCH] Add code comment explaining why the CSS transform is there --- vendor/ember-qunit/test-container-styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vendor/ember-qunit/test-container-styles.css b/vendor/ember-qunit/test-container-styles.css index ada8798b..41b6e4de 100644 --- a/vendor/ember-qunit/test-container-styles.css +++ b/vendor/ember-qunit/test-container-styles.css @@ -9,6 +9,8 @@ z-index: 98; border: 1px solid #ccc; margin: 0 auto; + + /* Prevent leaking position fixed elements outside the testing container */ transform: translateZ(0); }