From ec637483f20b6cad59591422da399910e32edbd0 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 e9b5a7eddd..5a9cef8862 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;
 }