From 1c0996227d681c5870fc09413261d882d17e547b Mon Sep 17 00:00:00 2001 From: Robert Lord Date: Fri, 24 Feb 2017 00:39:40 -0600 Subject: [PATCH] Add webkit-transform hack to fix chrome rendering, fixes #538 --- source/stylesheets/screen.css.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/stylesheets/screen.css.scss b/source/stylesheets/screen.css.scss index 1d216d3..ca5de77 100644 --- a/source/stylesheets/screen.css.scss +++ b/source/stylesheets/screen.css.scss @@ -324,6 +324,8 @@ html, body { // This is all the stuff with the light background in the left half of the page .content { + // fixes webkit rendering bug for some: see #538 + -webkit-transform: translateZ(0); // to place content above the dark box position: relative; z-index: 30;