From 70597cd7cc4a675c534ef6504d3b9fc6f33572e9 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Feb 2018 15:47:23 -0500 Subject: [PATCH] style code blocks --- _sass/_bootstrap.scss | 3 +++ _sass/_help.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/_sass/_bootstrap.scss b/_sass/_bootstrap.scss index bc798157..dc1ef747 100644 --- a/_sass/_bootstrap.scss +++ b/_sass/_bootstrap.scss @@ -22,6 +22,9 @@ $navbar-height: 80px; $navbar-margin-bottom: 0; $navbar-border-radius: 0; +$code-bg: $gray-lighter; +$code-color: $text-color; + //=== Inverted navbar // Reset inverted navbar basics $navbar-inverse-color: #fff; diff --git a/_sass/_help.scss b/_sass/_help.scss index a81fce41..4a82253f 100644 --- a/_sass/_help.scss +++ b/_sass/_help.scss @@ -444,3 +444,7 @@ a[rel='lightbox'] { } } } + +code { + border-radius: 2px; +}