From 69219d42718a332fcc952bfb8d3b0f540241d678 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 8 May 2016 13:50:45 -0700 Subject: [PATCH] move that change to reboot --- scss/_code.scss | 1 - scss/_reboot.scss | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_code.scss b/scss/_code.scss index 0ac1abe548..ea660bcdbf 100644 --- a/scss/_code.scss +++ b/scss/_code.scss @@ -35,7 +35,6 @@ kbd { // Blocks of code pre { display: block; - overflow: auto; // Normalize v4 removed this property, causing `
` content to break out of wrapping code snippets
   margin-top: 0;
   margin-bottom: 1rem;
   font-size: $code-font-size;
diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index 4906cb470a..deb9613cc6 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -200,6 +200,8 @@ pre {
   margin-top: 0;
   // Reset browser default of `1em` to use `rem`s
   margin-bottom: 1rem;
+  // Normalize v4 removed this property, causing `
` content to break out of wrapping code snippets
+  overflow: auto;
 }