blob: 2c4429a301cc0e96bdbea8661b60194cbfbd0bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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;
}
|