From c1963ff3866a7934736079a513e4246f3b1f9ff2 Mon Sep 17 00:00:00 2001 From: Adam Piontek Date: Tue, 6 Apr 2021 10:59:03 -0400 Subject: [PATCH] minor style fix & comment update --- assets/css/app.scss | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/assets/css/app.scss b/assets/css/app.scss index e10a266..cc0c3c4 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -19,19 +19,20 @@ /* Chroma syntax highlighting styles */ @import "chroma"; -/* code highlighting */ +/* + code highlighting handled by golang chroma + default 'solarized-dark256' css saved in _chroma.css + minor customizations here + */ pre.chroma { - line-height: 1.5; padding: 0.75rem 1rem; border-radius: .5em; - code { - font-family: $font-family-code; - } + color: $gray-300; } code.inline { background-color: #1c1c1c; - color: #8a8a8a; - padding: .2em .5em; + color: $gray-300; + padding: .1em .25em; border-radius: .25em; display: inline; }