From e729b1b16a6db74e7c74ad32e3bccc5e15e4e35f Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Wed, 29 Apr 2020 17:03:41 +0200 Subject: [PATCH] Backport #30685 `
`: Disable auto-hiding scrollbar in IE & legacy Edge
---
 scss/_reboot.scss | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index e9b5a7edddd9..5a9cef886270 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -229,6 +229,9 @@ pre {
   margin-bottom: 1rem;
   // Don't allow content to break outside
   overflow: auto;
+  // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
+  // making it impossible to interact with the content
+  -ms-overflow-style: scrollbar;
 }