From 34412db420ee7fa7c8f637e4382dea114d9aaf07 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 1 Dec 2017 11:22:48 +0100 Subject: [PATCH] css: avoid ugly vertical scrollbar for math in latest Chrome. Not sure what's wrong there. --- css/m-components.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/m-components.css b/css/m-components.css index 28fa4ce7..5bded04d 100644 --- a/css/m-components.css +++ b/css/m-components.css @@ -1318,6 +1318,7 @@ pre.m-code.m-inverted > span.hll { /* Math block, inline math */ div.m-math { overflow-x: auto; + overflow-y: hidden; /* Chrome 62 displays a vertical scrollbar otherwise */ text-align: center; } -- 2.30.2