diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index d7bab8d6f48a799ddff39cfe9b7daeccfb54bb28..656017df41fad405a4b0f632be6a16033cb89270 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -272,9 +272,14 @@ img {
   border-style: none; // Remove the border on images inside links in IE 10-.
 }
 
-svg:not(:root) {
-  overflow: hidden; // Hide the overflow in IE
+svg {
   vertical-align: middle;
+
+  &:not(:root) {
+    // Workaround for the SVG overflow bug in IE10/11 is still required.
+    // See https://github.com/twbs/bootstrap/issues/26878
+    overflow: hidden;
+  }
 }