/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** * teletrader.com - content is shifted down and right * Bug #1651917 - https://bugzilla.mozilla.org/show_bug.cgi?id=1651917 * WebCompat issue #55217 - https://webcompat.com/issues/55217 * * The content is shifted down and right, because they use webkit prefixes * for scaling and redefining the origin. Firefox doesn't support * -webkit-transform-origin-x/y * This is the object of https://bugzilla.mozilla.org/show_bug.cgi?id=1584881 * Adding transform-origin: 0 0; to body fixes the issue */ body { transform-origin: 0 0; }