From cda6eb7c2f05bc1141f76412cecd85c4e0f67242 Mon Sep 17 00:00:00 2001 From: Caleb John Date: Sat, 16 Feb 2019 19:16:32 -0700 Subject: [PATCH] Fix little white corner between scrollbars (#1229) --- ElectronClient/app/style.css | 5 +++++ ReactNativeClient/lib/MdToHtml.js | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ElectronClient/app/style.css b/ElectronClient/app/style.css index 94ef30faff..e40e93305a 100644 --- a/ElectronClient/app/style.css +++ b/ElectronClient/app/style.css @@ -24,6 +24,11 @@ table td, table th { ::-webkit-scrollbar { width: 7px; + height: 7px; +} + +::-webkit-scrollbar-corner { + background: none; } ::-webkit-scrollbar-track { diff --git a/ReactNativeClient/lib/MdToHtml.js b/ReactNativeClient/lib/MdToHtml.js index e95709dac9..5b59f78af5 100644 --- a/ReactNativeClient/lib/MdToHtml.js +++ b/ReactNativeClient/lib/MdToHtml.js @@ -538,6 +538,10 @@ class MdToHtml { } ::-webkit-scrollbar { width: 7px; + height: 7px; + } + ::-webkit-scrollbar-corner { + background: none; } ::-webkit-scrollbar-track { border: none;