aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-05-08 13:50:45 -0700
committerMark Otto <[email protected]>2016-05-08 13:50:45 -0700
commit69219d42718a332fcc952bfb8d3b0f540241d678 (patch)
treecb39047894d3293e70fda772cc5d8050509e6b89
parentd1b816637440aec4d3feb514ee0ddb9bcb130453 (diff)
downloadbootstrap-69219d42718a332fcc952bfb8d3b0f540241d678.tar.xz
bootstrap-69219d42718a332fcc952bfb8d3b0f540241d678.zip
move that change to reboot
-rw-r--r--scss/_code.scss1
-rw-r--r--scss/_reboot.scss2
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_code.scss b/scss/_code.scss
index 0ac1abe54..ea660bcdb 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 `<pre>` 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 4906cb470..deb9613cc 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 `<pre>` content to break out of wrapping code snippets
+ overflow: auto;
}